Skip to content

Commit 1b7d62a

Browse files
committed
all: fix: Change runner to modern pytest runner
1 parent 0018cc5 commit 1b7d62a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
## Changelog
2+
### 1.9.0
3+
* All: Update `make test` runner to use `pytest` instead of deprecated `setup.py test`
4+
25
### 1.8.1 (2024-11-29)
36
* All: Add a CircleCI Windows build with py3.6-py3.12 and remove references to TravisCI. (#246)
47
* All: Add Ubuntu builds for py3.6-3.13

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ develop: copyfiles extras
4949

5050
test:
5151
rm -f FAILED-*
52-
./foreach.sh 'DEBUG=1 python setup.py test -sv -ra || touch ../FAILED-$$PKG'
52+
./foreach.sh 'DEBUG=1 python -m pytest -sv -ra || touch ../FAILED-$$PKG'
5353
bash -c "! compgen -G 'FAILED-*'"
5454

5555
test-ci:

0 commit comments

Comments
 (0)