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 acae112 commit 19840adCopy full SHA for 19840ad
.travis.yml
@@ -5,6 +5,11 @@ php:
5
- '7.1'
6
- nightly
7
8
+# Configure environment to run test suites in parallel.
9
+env:
10
+ - TEST_SUITE = "Unit Tests"
11
+ - TEST_SUITE = "Integration Tests"
12
+
13
# Install test coverage package.
14
install:
15
- composer require satooshi/php-coveralls
@@ -17,7 +22,7 @@ before_script:
17
22
18
23
# Run tests and generate test coverage report.
19
24
script:
20
- - phpunit -d api_key=$API_KEY --coverage-clover build/logs/clover.xml
25
+ - phpunit -d api_key=$API_KEY --testsuite $TEST_SUITE --coverage-clover build/logs/clover.xml
21
26
27
# Submit test coverage report to Coveralls.
28
after_success:
0 commit comments