File: 0001-Adapt-phpunit-path.patch

package info (click to toggle)
php-guzzlehttp-promises 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 484 kB
  • sloc: php: 3,208; makefile: 24; xml: 23
file content (26 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (4)
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