We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e1c66 commit cedb0c9Copy full SHA for cedb0c9
2 files changed
.github/workflows/tests.yml
@@ -15,6 +15,7 @@ jobs:
15
- "3.7"
16
- "3.8"
17
- "3.9"
18
+ - "3.10"
19
20
runs-on: ubuntu-latest
21
@@ -44,9 +45,10 @@ jobs:
44
45
python -m pip install --upgrade pip
46
python -m pip install --upgrade setuptools wheel
47
python -m pip install -r requirements.txt
48
+ python -m pip install pytest
49
50
- name: Run tests
- run: python setup.py test
51
+ run: pytest
52
53
all_done:
54
name: Tests done
Makefile
@@ -29,7 +29,7 @@ lint:
29
flake8 cstruct tests
30
31
test:
32
- python3 setup.py test
+ pytest
33
34
typecheck:
35
mypy --strict --no-warn-unused-ignores cstruct
0 commit comments