소스 검색

s/trial/a testrunner.

Jelmer Vernooij 16 년 전
부모
커밋
dda5998fa3
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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