We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6dad63 commit cac53d2Copy full SHA for cac53d2
CHANGES.md
@@ -1,4 +1,7 @@
1
## Changelog
2
+### 1.9.0
3
+ * All: Update `make test` runner to use `pytest` instead of deprecated `setup.py test`
4
+
5
### 1.8.1 (2024-11-29)
6
* All: Add a CircleCI Windows build with py3.6-py3.12 and remove references to TravisCI. (#246)
7
* All: Add Ubuntu builds for py3.6-3.13
Makefile
@@ -49,7 +49,7 @@ develop: copyfiles extras
49
50
test:
51
rm -f FAILED-*
52
- ./foreach.sh 'DEBUG=1 python setup.py test -sv -ra || touch ../FAILED-$$PKG'
+ ./foreach.sh 'DEBUG=1 python -m pytest -sv -ra || touch ../FAILED-$$PKG'
53
bash -c "! compgen -G 'FAILED-*'"
54
55
test-ci:
0 commit comments