Skip to content

Commit b29a241

Browse files
committed
upgraded pytest version to 6.2.5 to avoid having issues at tests for py3.10+; added python version matrix for running CI checks for listed py versions
1 parent b68175f commit b29a241

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/main.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,20 @@ jobs:
2222
run: make lint
2323

2424
test:
25-
name: Automated testing
26-
25+
name: Automated Testing on Python ${{ matrix.python-version }}
2726
runs-on: ubuntu-latest
27+
continue-on-error: true
28+
strategy:
29+
matrix:
30+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2831

2932
steps:
3033
- uses: actions/checkout@v2
3134

32-
- uses: actions/setup-python@v2
35+
- name: Set up Python ${{ matrix.python-version }}
36+
uses: actions/setup-python@v2
3337
with:
34-
python-version: 3.8
38+
python-version: ${{ matrix.python-version }}
3539

3640
- name: Install
3741
run: make install-test

requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
coverage==5.3
22
freezegun==1.0.0
3-
pytest==6.1.2
3+
pytest==6.2.5
44
pytest-mock==3.3.1
55
requests-mock==1.8.0

0 commit comments

Comments
 (0)