Skip to content

Commit dca8a85

Browse files
committed
Unparallelizes test suites until there are enough tests to make the build setup time cost worth it.
1 parent 77aa8bd commit dca8a85

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ php:
44
- '7.0'
55
- '7.1'
66

7-
# Configure environment to run test suites in parallel.
8-
env:
9-
- TEST_SUITE = "Unit Tests"
10-
- TEST_SUITE = "Integration Tests"
11-
127
# Install test coverage package.
138
install:
149
- composer require satooshi/php-coveralls
@@ -20,7 +15,7 @@ before_script:
2015

2116
# Run tests and generate test coverage report.
2217
script:
23-
- phpunit -d api_key=$API_KEY --testsuite "$TEST_SUITE" --coverage-clover build/logs/clover.xml
18+
- phpunit -d api_key=$API_KEY --coverage-clover build/logs/clover.xml
2419

2520
# Submit test coverage report to Coveralls.
2621
after_success:

0 commit comments

Comments
 (0)