From 7839e42a21e1bb8f78ea6bb9ef5e5e75f9d0f5e2 Mon Sep 17 00:00:00 2001 From: Oliver Stark Date: Tue, 4 May 2021 20:08:00 +0200 Subject: [PATCH] test tweaks --- .gitignore | 1 + .phpunit.result.cache | 1 - composer.json | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 .phpunit.result.cache diff --git a/.gitignore b/.gitignore index a24a7ee..bb3bd6b 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ composer.lock .cache .DS_Store .idea +.phpunit.result.cache .project .settings *.esproj diff --git a/.phpunit.result.cache b/.phpunit.result.cache deleted file mode 100644 index aed014e..0000000 --- a/.phpunit.result.cache +++ /dev/null @@ -1 +0,0 @@ -C:37:"PHPUnit\Runner\DefaultTestResultCache":563:{a:2:{s:7:"defects";a:2:{s:55:"QueueCommandTest::test_getPreparedCommand_with_defaults";i:6;s:65:"QueueCommandTest::test_getPreparedCommand_alternative_script_args";i:6;}s:5:"times";a:5:{s:65:"BackgroundProcessRunTest::test_start_default_dummy_script_success";d:0.267;s:55:"QueueCommandTest::test_getPreparedCommand_with_defaults";d:0;s:58:"QueueCommandTest::test_getPreparedCommand_wrong_PHP_BINARY";d:0.004;s:64:"QueueCommandTest::test_getPreparedCommand_alternative_decoration";d:0;s:65:"QueueCommandTest::test_getPreparedCommand_alternative_script_args";d:0;}}} \ No newline at end of file diff --git a/composer.json b/composer.json index 188d6d5..5cfccbe 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,7 @@ "vimeo/psalm": "^4.4" }, "scripts": { - "ps": "vendor/bin/phpstan.phar analyse src --level=3 -c phpstan.neon", - "tests": "vendor/bin/phpunit -v" + "psalm": "vendor/bin/psalm", + "tests": "vendor/bin/phpunit --testdox" } }