summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-03-03 16:07:36 +0200
committerAarni Koskela <akx@iki.fi>2023-03-03 16:07:36 +0200
commit42faff7d3a28a9411532c5b45ed06de2456f15ef (patch)
tree6861d760b52bf7be7bf7ef824744d26fd5e85c5a
parent92e6fabaca913620bb65b76d162f01a7f41e93ea (diff)
downloadbabel-42faff7d3a28a9411532c5b45ed06de2456f15ef.tar.gz
Remove test-env makefile target (use tox instead)
-rw-r--r--Makefile15
1 files changed, 2 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 114f0c7..36bf28a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,7 @@
test: import-cldr
python ${PYTHON_TEST_FLAGS} -m pytest ${PYTEST_FLAGS}
-test-env:
- virtualenv test-env
- test-env/bin/pip install pytest
- test-env/bin/pip install --editable .
-
-clean-test-env:
- rm -rf test-env
-
-standalone-test: import-cldr test-env
- test-env/bin/pytest tests ${PYTEST_FLAGS}
-
-clean: clean-cldr clean-pyc clean-test-env
+clean: clean-cldr clean-pyc
import-cldr:
python scripts/download_import_cldr.py
@@ -31,4 +20,4 @@ develop:
tox-test: import-cldr
tox
-.PHONY: test develop tox-test clean-pyc clean-cldr import-cldr clean clean-test-env standalone-test
+.PHONY: test develop tox-test clean-pyc clean-cldr import-cldr clean standalone-test