Skip to content

Commit 38db2d2

Browse files
committed
Update GitHub action
Signed-off-by: Cristian Le <[email protected]>
1 parent c3c286f commit 38db2d2

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,19 @@ jobs:
1818

1919
pytest:
2020
name: Run pytests
21-
runs-on: ${{ matrix.os }}
21+
runs-on: ubuntu-latest
2222
needs: [ pre-commit ]
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
os: [ubuntu-latest]
2726
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
28-
include:
29-
- os: ubuntu-20.04
30-
python-version: "3.6"
3127
steps:
3228
- uses: actions/checkout@v3
3329
- name: Set up Python ${{ matrix.python-version }}
3430
uses: actions/setup-python@v4
3531
with:
3632
python-version: ${{ matrix.python-version }}
37-
- name: Install pytest
38-
run: pip install pytest invocations mock pytest-relaxed
3933
- name: Setup patchwork
40-
run: pip install -e .
34+
run: pip install -e .[test]
4135
- name: Test with pytest
4236
run: pytest

0 commit comments

Comments
 (0)