Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
evemartin authored Apr 10, 2024
1 parent 23a53b8 commit 68b4fa0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
test:
name: Run tests
runs-on: ubuntu-latest
outputs:
coverage-file: ${{ steps.run-python-tests.outputs }}
env:
LANG: C.UTF-8
steps:
Expand All @@ -31,7 +33,8 @@ jobs:
- name: Collect static
run: python example_project/manage.py collectstatic --noinput --settings portal_test_settings
- name: Run Python tests
run: pytest -x --cov=. --cov-report=xml -vv -n auto
id: run-python-tests
run: pytest -x --cov=. --cov-report=xml -vv -n auto >> "$GITHUB_OUTPUT"
env:
SELENIUM_WEBDRIVER: chrome-headless
SELENIUM_HEADLESS: True
Expand Down

0 comments on commit 68b4fa0

Please sign in to comment.