Browse Source

s/trial/a testrunner.

Jelmer Vernooij 16 years ago
parent
commit
eea02edc45
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Makefile

+ 3 - 3
Makefile

@@ -1,6 +1,6 @@
 PYTHON = python
 SETUP = $(PYTHON) setup.py
-TRIAL = $(shell which trial)
+TESTRUNNER = $(shell which trial)
 
 all: build 
 
@@ -12,10 +12,10 @@ install::
 	$(SETUP) install
 
 check:: build
-	PYTHONPATH=. $(PYTHON) $(TRIAL) dulwich
+	PYTHONPATH=. $(PYTHON) $(TESTRUNNER) dulwich
 
 check-noextensions:: clean
-	PYTHONPATH=. $(PYTHON) $(TRIAL) dulwich
+	PYTHONPATH=. $(PYTHON) $(TESTRUNNER) dulwich
 
 clean::
 	$(SETUP) clean --all