Skip to content

Commit 1282379

Browse files
committed
Remove deprecated setup.py test
1 parent 8af1502 commit 1282379

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
if: steps.release.outputs.version == 0
5151
run: |
5252
pip install -e .
53-
python setup.py test
53+
python -m unittest -v tests.suite

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ debug:
1414
DEBUG_IMMUTABLES=1 $(PYTHON) setup.py build_ext --inplace
1515

1616
test:
17-
$(PYTHON) setup.py test -v
17+
$(PYTHON) -m unittest -v
1818

1919
rtest:
2020
~/dev/venvs/36-debug/bin/python setup.py build_ext --inplace

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,4 @@
7373
provides=['immutables'],
7474
include_package_data=True,
7575
ext_modules=ext_modules,
76-
test_suite='tests.suite',
7776
)

0 commit comments

Comments
 (0)