We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b5c3db commit 87340f7Copy full SHA for 87340f7
.travis.yml
@@ -13,4 +13,4 @@ before_script:
13
- sudo make install
14
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
15
- cd ..
16
-script: phpunit --coverage-text .
+script: phpunit --coverage-text --configuration=phpunit.xml
phpunit.xml
@@ -0,0 +1,17 @@
1
+<phpunit colors="true">
2
+ <testsuite name="phpunit-mockfunction Test Suite">
3
+ <directory>./Tests</directory>
4
+ </testsuite>
5
+
6
+ <groups>
7
+ <exclude>
8
+ <group>PHPUnit</group>
9
+ </exclude>
10
+ </groups>
11
12
+ <filter>
+ <whitelist>
+ <directory suffix=".php">./PHPUnit</directory>
+ </whitelist>
+ </filter>
17
+</phpunit>
0 commit comments