# HG changeset patch # User Kevin Bullock # Date 1501971720 18000 # Node ID 25c13dd3433fea782109190abbd0c7d0e9fca381 # Parent e3dab807e38cc489f541c4a62997bb9b4f72c4a8 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. diff -r e3dab807e38c -r 25c13dd3433f Makefile --- a/Makefile Sun Aug 06 09:45:35 2017 -0500 +++ b/Makefile Sat Aug 05 17:22:00 2017 -0500 @@ -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-%: