Skip to content
Snippets Groups Projects
Commit 50a0d52e authored by Augie Fackler's avatar Augie Fackler
Browse files

Makefile to ease running of tests.

parent a3f97617
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
PYTHON=python
help:
@echo 'Commonly used make targets:'
@echo ' tests - run all tests in the automatic test suite'
all: tests
tests:
cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS)
test-%:
cd tests && $(PYTHON) run-tests.py $(TESTFLAGS) $@
.PHONY: help all local build doc clean install install-bin install-doc \
install-home install-home-bin install-home-doc dist dist-notests tests \
update-pot
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment