Skip to content

Commit 9b3495a

Browse files
committed
Drop scrutinizer-ci
1 parent 040b96d commit 9b3495a

File tree

2 files changed

+15
-27
lines changed

2 files changed

+15
-27
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ install:
1010
- composer install --dev --no-interaction
1111

1212
script:
13-
- mkdir -p build/logs
14-
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
13+
- vendor/bin/phpunit
1514

1615
after_script:
1716
- php vendor/bin/coveralls
18-
- wget https://scrutinizer-ci.com/ocular.phar
19-
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml

phpunit.xml.dist

Lines changed: 14 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
syntaxCheck="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false"
1212
>
13-
<testsuites>
14-
<testsuite name="Repository Test Suite">
15-
<directory>./tests/</directory>
16-
</testsuite>
17-
</testsuites>
18-
19-
<filter>
20-
<whitelist addUncoveredFilesFromWhitelist="false">
21-
<directory suffix=".php">src</directory>
22-
<exclude>
23-
<directory suffix=".php">vendor</directory>
24-
</exclude>
25-
</whitelist>
26-
</filter>
13+
<testsuites>
14+
<testsuite name="Repository Test Suite">
15+
<directory>./tests/</directory>
16+
</testsuite>
17+
</testsuites>
2718
</phpunit>

0 commit comments

Comments
 (0)