fix: allow timed exams for providers that are no longer valid #1803
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
run_tests: | |
name: Tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.8", "3.11", "3.12"] | |
node-version: ["18", "20"] | |
toxenv: | |
[ | |
"django42-drflatest", | |
"quality", | |
"pii_check", | |
"version_check", | |
"js_tests", | |
"js_lint", | |
"rst_validation", | |
"translations-django42", | |
] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set display to virtual frame buffer | |
run: export DISPLAY=:99.0 | |
- name: Install pip | |
run: pip install -r requirements/pip.txt | |
- name: Install requirements | |
run: pip install -r requirements/ci.txt | |
- name: Run tests | |
env: | |
TOXENV: ${{ matrix.toxenv }} | |
run: tox | |
- name: Run Coverage | |
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42-drflatest' | |
uses: codecov/codecov-action@v4 | |
with: | |
flags: unittests | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |