Skip to content

Commit

Permalink
Add more dockunit test environments
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Feb 19, 2015
1 parent ec93530 commit 2f092d5
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion Dockunit.json
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"
}
]
}

0 comments on commit 2f092d5

Please sign in to comment.