File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11test : import-cldr
2- @PYTHONWARNINGS=default python ${PYTHON_TEST_FLAGS} -m pytest
2+ python ${PYTHON_TEST_FLAGS} -m pytest
33
44test-cov : import-cldr
5- @PYTHONWARNINGS=default python ${PYTHON_TEST_FLAGS} -m pytest --cov=babel
5+ python ${PYTHON_TEST_FLAGS} -m pytest --cov=babel
66
77test-env :
8- @ virtualenv test-env
9- @ test-env/bin/pip install pytest
10- @ test-env/bin/pip install --editable .
8+ virtualenv test-env
9+ test-env/bin/pip install pytest
10+ test-env/bin/pip install --editable .
1111
1212clean-test-env :
13- @ rm -rf test-env
13+ rm -rf test-env
1414
1515standalone-test : import-cldr test-env
16- @ test-env/bin/pytest tests
16+ test-env/bin/pytest tests ${PYTEST_FLAGS}
1717
1818clean : clean-cldr clean-pyc clean-test-env
1919
2020import-cldr :
21- @ python scripts/download_import_cldr.py
21+ python scripts/download_import_cldr.py
2222
2323clean-cldr :
24- @ rm -f babel/locale-data/* .dat
25- @ rm -f babel/global.dat
24+ rm -f babel/locale-data/* .dat
25+ rm -f babel/global.dat
2626
2727clean-pyc :
28- @ find . -name ' *.pyc' -exec rm {} \;
29- @ find . -name ' __pycache__' -type d | xargs rm -rf
28+ find . -name ' *.pyc' -exec rm {} \;
29+ find . -name ' __pycache__' -type d | xargs rm -rf
3030
3131develop :
32- @ pip install --editable .
32+ pip install --editable .
3333
3434tox-test : import-cldr
35- @ tox
35+ tox
3636
3737upload-docs :
3838 $(MAKE ) -C docs html dirhtml latex
You can’t perform that action at this time.
0 commit comments