diff options
| author | Georg Brandl <georg@python.org> | 2021-01-18 21:24:00 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2021-01-18 22:08:36 +0100 |
| commit | 2a3d3a7d5b9c60dedf6638d876161d9563faebcf (patch) | |
| tree | 809c0b4a686db98f5954afa1944404cd9652c6b2 /Makefile | |
| parent | f0445be718da83541ea3401aad882f3937147263 (diff) | |
| download | pygments-git-examplefiles.tar.gz | |
Move test_examplefiles to new tests/lexers scheme.examplefiles
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) |
