File tree Expand file tree Collapse file tree 4 files changed +19
-18
lines changed Expand file tree Collapse file tree 4 files changed +19
-18
lines changed Original file line number Diff line number Diff line change 1- build /api
2- build /code-browser
3- build /coverage
4- build /logs
5- build /pdepend
6- cache.properties
71/tests /_files /tmp
82/vendor
93/composer.lock
10- /composer.phar
114/.idea
125/.php_cs.cache
6+
Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 7.0
5- - 7.1
6- - nightly
4+ - 7.0
5+ - 7.1
6+ - nightly
7+
8+ env :
9+ matrix :
10+ - DEPENDENCIES="high"
11+ - DEPENDENCIES="low"
712
813sudo : false
914
1015before_install :
11- - composer self-update
16+ - composer self-update
17+ - composer clear-cache
1218
1319install :
14- - travis_retry composer install --no-interaction --prefer-source
20+ - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable; fi
21+ - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable --prefer-lowest; fi
1522
1623script :
1724
18- - vendor/bin/phpunit --configuration build
25+ - vendor/bin/phpunit
1926
2027notifications :
2128 email : false
Original file line number Diff line number Diff line change 99
1010 <target name =" composer" depends =" clean" description =" Install dependencies with Composer" >
1111 <exec executable =" composer" taskname =" composer" >
12- <env key =" COMPOSER_DISABLE_XDEBUG_WARN" value =" 1" />
1312 <arg value =" update" />
1413 <arg value =" --no-interaction" />
1514 <arg value =" --no-progress" />
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/5.3 /phpunit.xsd"
4- bootstrap =" ../ tests/bootstrap.php"
3+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/6.0 /phpunit.xsd"
4+ bootstrap =" tests/bootstrap.php"
55 backupGlobals =" false"
66 verbose =" true" >
77 <testsuite >
8- <directory suffix =" Test.php" >../ tests/tests</directory >
8+ <directory suffix =" Test.php" >tests/tests</directory >
99 </testsuite >
1010
1111 <filter >
1212 <whitelist processUncoveredFilesFromWhitelist =" true" >
13- <directory suffix =" .php" >../ src</directory >
13+ <directory suffix =" .php" >src</directory >
1414 </whitelist >
1515 </filter >
1616</phpunit >
17+
You can’t perform that action at this time.
0 commit comments