-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockunit.json
31 lines (31 loc) · 965 Bytes
/
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
{
"containers": [
{
"prettyName": "PHP 5.2 FPM WordPress 4.3",
"image": "dockunit/prebuilt-images:php-mysql-phpunit-wordpress-5.2-fpm",
"beforeScripts": [
"service mysql start",
"bash bin/install-wp-tests.sh wordpress_test root '' localhost 4.3"
],
"testCommand": "phpunit"
},
{
"prettyName": "PHP 5.6 FPM WordPress 4.2",
"image": "dockunit/prebuilt-images:php-mysql-phpunit-wordpress-5.6-fpm",
"beforeScripts": [
"service mysql start",
"bash bin/install-wp-tests.sh wordpress_test2 root '' localhost 4.2"
],
"testCommand": "phpunit"
},
{
"prettyName": "PHP 7.0 FPM Latest WordPress",
"image": "dockunit/prebuilt-images:php-mysql-phpunit-wordpress-7.0-fpm",
"beforeScripts": [
"service mysql start",
"bash bin/install-wp-tests.sh wordpress_test3 root '' localhost"
],
"testCommand": "phpunit"
}
]
}