changeset 1039:25c13dd3433f

tests: run doctests with the whole suite When the line to run doctests was introduced, it looks like it was just added to the wrong rule. Let's put it in the right one.
author Kevin Bullock <kbullock@ringworld.org>
date Sat, 05 Aug 2017 17:22:00 -0500
parents e3dab807e38c
children bafa4c3b7385
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile
+++ b/Makefile
@@ -10,10 +10,10 @@
 all: help
 
 tests:
+	python -m doctest hggit/hg2git.py
 	cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS)
 
 test-%:
-	python -m doctest hggit/hg2git.py
 	cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS) $@
 
 tests-%: