# HG changeset patch # User Kevin Bullock # Date 1513980918 21600 # Node ID c79597908178f1d1f7108c92f811d374e7250173 # Parent 80b8188a6eb1e2535e829bb76b3b2b3bc8dd295f tests: remove now-redundant doctest runs from `make tests` diff -r 80b8188a6eb1 -r c79597908178 Makefile --- a/Makefile Thu Nov 30 14:48:54 2017 -0800 +++ b/Makefile Fri Dec 22 16:15:18 2017 -0600 @@ -10,7 +10,6 @@ all: help tests: - $(PYTHON) -m doctest hggit/*.py contrib/*.py cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS) test-%: @@ -20,7 +19,6 @@ @echo "Path to crew repo is $(CREW) - set this with CREW= if needed." hg -R $(CREW) checkout $$(echo $@ | sed s/tests-//) && \ (cd $(CREW) ; $(MAKE) clean local) && \ - PYTHONPATH=$(CREW) $(PYTHON) -m doctest hggit/*.py contrib/*.py && \ cd tests && $(PYTHON) $(CREW)/tests/run-tests.py $(TESTFLAGS) # This is intended to be the authoritative list of Hg versions that this