Skip to content

Commit 0b6cdcf

Browse files
committed
composer: Deprecate mf1-related test scripts
Developers should run all tests now when checking for regressions, the tests for unimplemented features will be skipped.
1 parent 0282a2f commit 0b6cdcf

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@
3030
"scripts": {
3131
"cs-check": "phpcs",
3232
"tests": "XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --coverage-text --whitelist Mf2",
33-
"test-mf1": "./vendor/bin/phpunit --group microformats/tests/mf1",
33+
"test-mf1": [
34+
"echo test-mf1 script is deprecated, use composer tests @no_additional_args",
35+
"composer tests"
36+
],
3437
"check-and-test": [
3538
"@cs-check",
3639
"@tests"
3740
],
3841
"check-and-test-all": [
39-
"@check-and-test",
40-
"@test-mf1"
42+
"echo check-and-test-all script is deprecated, use composer check-and-test @no_additional_args",
43+
"@check-and-test"
4144
]
4245
},
4346
"autoload": {

0 commit comments

Comments
 (0)