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 8af1502 commit 1282379Copy full SHA for 1282379
.github/workflows/tests.yml
@@ -50,4 +50,4 @@ jobs:
50
if: steps.release.outputs.version == 0
51
run: |
52
pip install -e .
53
- python setup.py test
+ python -m unittest -v tests.suite
Makefile
@@ -14,7 +14,7 @@ debug:
14
DEBUG_IMMUTABLES=1 $(PYTHON) setup.py build_ext --inplace
15
16
test:
17
- $(PYTHON) setup.py test -v
+ $(PYTHON) -m unittest -v
18
19
rtest:
20
~/dev/venvs/36-debug/bin/python setup.py build_ext --inplace
setup.py
@@ -73,5 +73,4 @@
73
provides=['immutables'],
74
include_package_data=True,
75
ext_modules=ext_modules,
76
- test_suite='tests.suite',
77
)
0 commit comments