Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
janbaykara committed Dec 19, 2024
1 parent c66cd81 commit ca94c09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ jobs:
- name: Run django tests
run: cat .env && coverage run --source=. --branch manage.py test || (cat server.log && exit 1)
- name: Run geocoding tests in isolation
run: RUN_GEOCODING_TESTS=1 cat .env && python manage.py test hub.tests.test_external_data_source_parsers || (cat server.log && exit 1)
run: |
echo "RUN_GEOCODING_TESTS=1" >> .env
cat .env && python manage.py test hub.tests.test_external_data_source_parsers || (cat server.log && exit 1)
- name: Generate coverage xml
run: coverage xml
- name: Upload coverage.xml
Expand Down

0 comments on commit ca94c09

Please sign in to comment.