Added a build target to the Makefile which we need for python3 tests

This commit is contained in:
Daniel Neuhäuser 2010-05-16 16:54:15 +02:00
parent df444e822c
commit 471da5aa21

View File

@ -32,8 +32,11 @@ pylint:
reindent: reindent:
@$(PYTHON) utils/reindent.py -r -B . @$(PYTHON) utils/reindent.py -r -B .
test: test: build
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST) @cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
covertest: covertest: build
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage --cover-package=sphinx $(TEST) @cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage --cover-package=sphinx $(TEST)
build:
@$(PYTHON) setup.py build