summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFélix Mattrat <mattr.felix@gmail.com>2016-04-15 13:02:13 +0200
committerFélix Mattrat <mattr.felix@gmail.com>2016-04-15 13:02:13 +0200
commit9c64032e4ab2c0a5b031641cca9bfc0459c15a97 (patch)
tree282529eda91bdf124539754a0570eb711dd6a671 /Makefile
parent9adaa031887b5511508fd2ee2b1f60680a788a90 (diff)
downloadpython-fastimport-git-9c64032e4ab2c0a5b031641cca9bfc0459c15a97.tar.gz
removed unused/useless statements
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2c92fc3..0852cfd 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ SETUP = $(PYTHON) setup.py
ifeq ($(shell $(PYTHON) -c "import sys; print(sys.version_info >= (2, 7))"),True)
TESTRUNNER ?= unittest
else
-TESTRUNNER ?= unittest.__main__
+TESTRUNNER ?= unittest2.__main__
endif
RUNTEST = PYTHONPATH=.:$(PYTHONPATH) $(PYTHON) -m $(TESTRUNNER)