1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Sat, 18 Apr 2015 21:16:18 -0400
Subject: Adapt phpunit path
Forwarded: not-needed
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 8d5b3ef..3e374de 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
all: clean test
test:
- vendor/bin/phpunit
+ phpunit
coverage:
- vendor/bin/phpunit --coverage-html=artifacts/coverage
+ phpunit --coverage-html=artifacts/coverage
view-coverage:
open artifacts/coverage/index.html
|