Skip to content

Commit

Permalink
fix: removed continue on error so if tests fail the check fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Zorkin committed Dec 18, 2024
1 parent d425239 commit 9b208f1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docker-auto-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
- name: Run backend tests
id: backend_tests
continue-on-error: true
run: |
cd backend
poetry run pytest --junitxml=pytest-results.xml
Expand Down Expand Up @@ -124,7 +123,6 @@ jobs:
- name: Run frontend tests
id: frontend_tests
continue-on-error: true
run: |
cd frontend
npm run test:run -- --reporter=junit --outputFile=vitest-results.xml
Expand All @@ -148,4 +146,4 @@ jobs:
check_name: "Frontend Test Results"
fail_on: "errors"
report_individual_runs: "true"
deduplicate_classes_by_file_name: "true"
deduplicate_classes_by_file_name: "true"

0 comments on commit 9b208f1

Please sign in to comment.