Skip to content

Commit

Permalink
[fix] artifactへの出力をなしに
Browse files Browse the repository at this point in the history
  • Loading branch information
eito2002 committed Oct 10, 2024
1 parent 6df9f9a commit 680124d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 23 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/build-and-routing-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,4 @@ jobs:
- name: Run routing tests
run: |
set -e
pytest -v test/webserv/integration/test_routing.py > routing_test_results.txt
- name: Upload test results
uses: actions/upload-artifact@v3
with:
name: routing-test-results
path: routing_test_results.txt
pytest -v test/webserv/integration/test_routing.py
9 changes: 1 addition & 8 deletions .github/workflows/run-and-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,4 @@ jobs:
- name: Run e2e tests
run: |
set -e
make e2e > e2e_test_results.txt || (cat e2e_test_results.txt && exit 1)
- name: Upload e2e test results
uses: actions/upload-artifact@v3
with:
name: e2e-test-results
path: e2e_test_results.txt
make e2e
7 changes: 0 additions & 7 deletions .github/workflows/run-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,4 @@ jobs:

- name: Run unit tests
run: |
set -e
make unit > unit_test_results.txt
- name: Upload unit test results
uses: actions/upload-artifact@v3
with:
name: unit-test-results
path: unit_test_results.txt

0 comments on commit 680124d

Please sign in to comment.