summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-03-03 18:51:58 +0200
committerGitHub <noreply@github.com>2023-03-03 18:51:58 +0200
commit134c792df3b6aa84de3e74e81a875493c95dcc2e (patch)
tree4fb8274ca486b45f601fcfdb8865656806c15c51 /Makefile
parent92e6fabaca913620bb65b76d162f01a7f41e93ea (diff)
parentc6167751d11d6e1934ec8c8473b454d639746cb8 (diff)
downloadbabel-134c792df3b6aa84de3e74e81a875493c95dcc2e.tar.gz
Merge pull request #986 from python-babel/improve-contributing-instructions
Improve contributing instructions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 3 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 114f0c7..05f4d84 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
@@ -28,7 +17,7 @@ clean-pyc:
develop:
pip install --editable .
-tox-test: import-cldr
+tox-test:
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