summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 721986b2..108ed96d 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,9 @@ export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
all: clean-pyc check test
check:
- @$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js sphinx
+ @$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js \
+ -i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py \
+ -i doc/_build -i ez_setup.py -i tests/path.py .
clean: clean-pyc clean-patchfiles
@@ -28,3 +30,6 @@ reindent:
test:
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
+
+covertest:
+ @cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage --cover-package=sphinx $(TEST)