Skip to content

Commit b66120a

Browse files
committed
Setup tests to run locally
Merges WordPress/wporg-developer@49120b0 from fork
1 parent 7cf5dda commit b66120a

File tree

6 files changed

+3199
-31
lines changed

6 files changed

+3199
-31
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
vendor
1+
vendor
2+
coverage

composer.json

+13-1
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,25 @@
2828
"scribu/scb-framework" : "dev-master@dev",
2929
"psr/log" : "~1.0"
3030
},
31+
"require-dev" : {
32+
"phpunit/phpunit": "^7",
33+
"spatie/phpunit-watcher": "^1.23",
34+
"yoast/phpunit-polyfills": "^1.0"
35+
},
36+
"scripts" : {
37+
"test": "phpunit",
38+
"test:watch": "phpunit-watcher watch < /dev/tty",
39+
"test:coverage": "php -d xdebug.mode=coverage ./vendor/bin/phpunit --coverage-html coverage"
40+
},
3141
"autoload" : {
3242
"classmap": ["lib"],
3343
"files" : ["lib/runner.php", "lib/template.php"]
3444
},
3545
"config": {
3646
"allow-plugins": {
3747
"composer/installers": true
38-
}
48+
},
49+
"_process-timeout-comment": "Work around `test:watch` timeout, see https://github.com/spatie/phpunit-watcher/issues/63#issuecomment-545633709",
50+
"process-timeout": 0
3951
}
4052
}

0 commit comments

Comments
 (0)