Skip to content

Commit

Permalink
Remove deprecated setup.py test
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Feb 9, 2021
1 parent 8af1502 commit 1282379
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
if: steps.release.outputs.version == 0
run: |
pip install -e .
python setup.py test
python -m unittest -v tests.suite
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ debug:
DEBUG_IMMUTABLES=1 $(PYTHON) setup.py build_ext --inplace

test:
$(PYTHON) setup.py test -v
$(PYTHON) -m unittest -v

rtest:
~/dev/venvs/36-debug/bin/python setup.py build_ext --inplace
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,4 @@
provides=['immutables'],
include_package_data=True,
ext_modules=ext_modules,
test_suite='tests.suite',
)

0 comments on commit 1282379

Please sign in to comment.