-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockunit.json
40 lines (40 loc) · 1.06 KB
/
Dockunit.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"containers": [
{
"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"
}
]
}