File: 0002-Adapt-phpunit-path.patch

package info (click to toggle)
php-guzzlehttp 5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,560 kB
  • ctags: 2,519
  • sloc: php: 11,610; makefile: 182; python: 22; sh: 6
file content (27 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
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
27
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Sun, 4 May 2014 14:05:09 -0400
Subject: Adapt phpunit path

Forwarded: not-needed
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index b8188d2..702594c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,11 +7,11 @@ stop-server:
 	cd vendor/guzzlehttp/ringphp && make stop-server
 
 test: start-server
-	vendor/bin/phpunit
+	phpunit
 	$(MAKE) stop-server
 
 coverage: start-server
-	vendor/bin/phpunit --coverage-html=artifacts/coverage
+	phpunit --coverage-html=artifacts/coverage
 	$(MAKE) stop-server
 
 view-coverage: