diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
@@ -12,8 +12,8 @@ PYTHON ?= python3 export PYTHONPATH = $(shell echo "$$PYTHONPATH"):$(shell python -c 'import os; print ":".join(os.path.abspath(line.strip()) for line in file("PYTHONPATH"))' 2>/dev/null) -.PHONY: all check clean clean-pyc codetags docs mapfiles \ - pylint reindent test test-coverage test-examplefiles \ +.PHONY: all check clean clean-pyc docs mapfiles \ + pylint reindent test test-coverage \ tox-test tox-test-coverage regexlint all: clean-pyc check test @@ -26,16 +26,12 @@ check: -i docs/build -i pygments/formatters/_mapping.py -i pygments/unistring.py clean: clean-pyc - -rm -rf doc/_build build Pygments.egg-info tests/examplefiles/output + -rm -rf doc/_build build Pygments.egg-info -rm -f codetags.html clean-pyc: find . -name '__pycache__' -exec rm -rf {} + -codetags: - @$(PYTHON) scripts/find_codetags.py -i tests/examplefiles -i scripts/pylintrc \ - -i scripts/find_codetags.py -o codetags.html . - docs: make -C doc html @@ -57,9 +53,6 @@ test: test-coverage: @$(PYTHON) `which py.test` --cov --cov-report=html --cov-report=term $(TEST) -test-examplefiles: - @$(PYTHON) `which py.test` tests.test_examplefiles - tox-test: @tox -- $(TEST) |
