Skip to content

Commit 7b59063

Browse files
committed
Makefile: remove quietness from all commands + PYTHONWARNINGS overrides from tests
1 parent 8bbaa65 commit 7b59063

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

Makefile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
test: import-cldr
2-
@PYTHONWARNINGS=default python ${PYTHON_TEST_FLAGS} -m pytest
2+
python ${PYTHON_TEST_FLAGS} -m pytest
33

44
test-cov: import-cldr
5-
@PYTHONWARNINGS=default python ${PYTHON_TEST_FLAGS} -m pytest --cov=babel
5+
python ${PYTHON_TEST_FLAGS} -m pytest --cov=babel
66

77
test-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

1212
clean-test-env:
13-
@rm -rf test-env
13+
rm -rf test-env
1414

1515
standalone-test: import-cldr test-env
16-
@test-env/bin/pytest tests
16+
test-env/bin/pytest tests ${PYTEST_FLAGS}
1717

1818
clean: clean-cldr clean-pyc clean-test-env
1919

2020
import-cldr:
21-
@python scripts/download_import_cldr.py
21+
python scripts/download_import_cldr.py
2222

2323
clean-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

2727
clean-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

3131
develop:
32-
@pip install --editable .
32+
pip install --editable .
3333

3434
tox-test: import-cldr
35-
@tox
35+
tox
3636

3737
upload-docs:
3838
$(MAKE) -C docs html dirhtml latex

0 commit comments

Comments
 (0)