Skip to content

Commit

Permalink
Update pytest workflow to make it pass
Browse files Browse the repository at this point in the history
The order of execution mangled things up. The package installation
actually downgrades some packages (e.g. pylint) which made the
pylint stage fail.
  • Loading branch information
SteffenKockel committed Oct 15, 2023
1 parent f5c460e commit 6e5c250
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -18,8 +18,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
pip install -e .
pip install -r tests/requirements.txt
pip install coverage pytest
- name: Execute pytests to avoid regressions
run: |
Expand Down

0 comments on commit 6e5c250

Please sign in to comment.