-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec93530
commit 2f092d5
Showing
1 changed file
with
28 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,40 @@ | ||
{ | ||
"containers": [ | ||
{ | ||
"prettyName": "PHP 5.2 on Ubuntu", | ||
"prettyName": "PHP 5.2 on Ubuntu on Latest WP", | ||
"image": "tlovett1/php-5.2-phpunit-3.5", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost latest" | ||
], | ||
"testCommand": "phpunit" | ||
}, | ||
{ | ||
"prettyName": "PHP 5.2 on Ubuntu on WP 3.8", | ||
"image": "tlovett1/php-5.2-phpunit-3.5", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost 3.8" | ||
], | ||
"testCommand": "phpunit" | ||
}, | ||
{ | ||
"prettyName": "PHP 5.5 FPM WordPress Latest WP", | ||
"image": "tlovett1/php-fpm-phpunit-wp", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost latest" | ||
], | ||
"testCommand": "phpunit" | ||
}, | ||
{ | ||
"prettyName": "PHP 5.5 FPM WordPress WP 3.8", | ||
"image": "tlovett1/php-fpm-phpunit-wp", | ||
"beforeScripts": [ | ||
"service mysql start", | ||
"bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost 3.8" | ||
], | ||
"testCommand": "phpunit" | ||
} | ||
] | ||
} |