Last active
September 29, 2016 18:12
-
-
Save zachflower/98945228aaefde9b0d19ece8c94ceedd to your computer and use it in GitHub Desktop.
Codeship Parallel Tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- type: parallel | |
steps: | |
- service: app | |
command: vendor/bin/phpunit tests/Auth/ | |
- service: app | |
command: vendor/bin/phpunit tests/Broadcasting/ | |
- service: app | |
command: vendor/bin/phpunit tests/Bus/ | |
- service: app | |
command: vendor/bin/phpunit tests/Cache/ | |
- service: app | |
command: vendor/bin/phpunit tests/Console/ | |
- service: app | |
command: vendor/bin/phpunit tests/Container/ | |
- service: app | |
command: vendor/bin/phpunit tests/Cookie/ | |
- service: app | |
command: vendor/bin/phpunit tests/Database/ | |
- service: app | |
command: vendor/bin/phpunit tests/Encryption/ | |
- service: app | |
command: vendor/bin/phpunit tests/Events/ | |
- service: app | |
command: vendor/bin/phpunit tests/Filesystem/ | |
- service: app | |
command: vendor/bin/phpunit tests/Foundation/ | |
- service: app | |
command: vendor/bin/phpunit tests/Hashing/ | |
- service: app | |
command: vendor/bin/phpunit tests/Http/ | |
- service: app | |
command: vendor/bin/phpunit tests/Log/ | |
- service: app | |
command: vendor/bin/phpunit tests/Mail/ | |
- service: app | |
command: vendor/bin/phpunit tests/Pagination/ | |
- service: app | |
command: vendor/bin/phpunit tests/Pipeline/ | |
- service: app | |
command: vendor/bin/phpunit tests/Queue/ | |
- service: app | |
command: vendor/bin/phpunit tests/Redis/ | |
- service: app | |
command: vendor/bin/phpunit tests/Routing/ | |
- service: app | |
command: vendor/bin/phpunit tests/Session/ | |
- service: app | |
command: vendor/bin/phpunit tests/Support/ | |
- service: app | |
command: vendor/bin/phpunit tests/Translation/ | |
- service: app | |
command: vendor/bin/phpunit tests/Validation/ | |
- service: app | |
command: vendor/bin/phpunit tests/View/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment