Skip to content

Commit 7db0961

Browse files
committed
test.yml: Replace call to "python setup.py test" with pytest
.. because Setuptools >=72 stopped providing that command: https://setuptools.pypa.io/en/stable/history.html#v72-0-0
1 parent b1bfc09 commit 7db0961

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ jobs:
2626
run: |-
2727
set -x
2828
pip install -U setuptools # for Python >=3.12
29+
pip install pytest
2930
python setup.py sdist
3031
cd dist/
3132
tar xf hsluv-*.tar.gz
3233
cd hsluv-*/
33-
python setup.py test
34+
pytest -v tests/

0 commit comments

Comments
 (0)