diff options
author | Remi Collet <remi@remirepo.net> | 2018-04-11 13:09:01 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-04-11 13:09:01 +0200 |
commit | 08fff2499d0543253229a7d41b63c1e8afe372d6 (patch) | |
tree | 696b40b6a06ce9938367f33d557761b0dec669a0 /composer.json | |
parent | 134eb252212fcd1e89f91921750d8457254b3d58 (diff) |
v2.9.3
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/composer.json b/composer.json index b4cc8c7..f9f96e4 100644 --- a/composer.json +++ b/composer.json @@ -41,7 +41,8 @@ "test/autoload.php" ], "psr-4": { - "ZendTest\\Db\\": "test/" + "ZendTest\\Db\\": "test/unit", + "ZendIntegrationTest\\Db\\": "test/integration" } }, "config": { @@ -64,8 +65,9 @@ ], "cs-check": "phpcs", "cs-fix": "phpcbf", - "test": "phpunit --colors=always", + "test": "phpunit --colors=always --testsuite \"unit test\"", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", + "test-integration" : "phpunit --colors=always --testsuite \"integration test\"", "upload-coverage": "coveralls -v" } } |