1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Make parallel unit tests standard

This commit is contained in:
ralila 2021-11-30 22:41:39 +01:00
parent 9389f98997
commit 4c6f913d38

View File

@ -111,8 +111,8 @@
"cs": "phpcs -p",
"cs-fix": "phpcbf -p",
"lint": "parallel-lint ./src ./tests",
"phpunit": "phpunit",
"phpunit-p": "paratest --runner=WrapperRunner",
"phpunit": "paratest --runner=WrapperRunner",
"phpunit-std": "phpunit",
"psalm": "@php ./psalm --find-dead-code",
"tests": [
"@cs",
@ -124,8 +124,8 @@
"cs": "Checks that the code conforms to the coding standard.",
"cs-fix": "Automatically correct coding standard violations.",
"lint": "Runs unit tests.",
"phpunit": "Runs unit tests.",
"phpunit-p": "Runs unit tests in parallel.",
"phpunit": "Runs unit tests in parallel.",
"phpunit-std": "Runs unit tests.",
"psalm": "Runs static analysis.",
"tests": "Checks coding style and runs unit tests."
}