# HG changeset patch
# User Kevin Bullock <kbullock@ringworld.org>
# Date 1502031107 18000
#      Sun Aug 06 09:51:47 2017 -0500
# Node ID fddb62eaf21774d0e0c80df85d5f437ffc8ac3bb
# Parent  bafa4c3b738579df00355c23664f9635e93e2810
tests: use $PYTHON to run doctests

diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
 all: help
 
 tests:
-	python -m doctest hggit/*.py contrib/*.py
+	$(PYTHON) -m doctest hggit/*.py contrib/*.py
 	cd tests && $(PYTHON) run-tests.py --with-hg=`which hg` $(TESTFLAGS)
 
 test-%: