Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-11-22 17:19:56 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-11-22 18:07:30 +0300
commiteb833767e863a6d7aeb1f198abe01619a794e057 (patch)
tree8c5d8630534cdd9b993cb357bf4914d4b23d806f /composer.json
parent8f8fa5113afe4733facbabea81ae10563c84e203 (diff)
Move unit tests to tests/Unit
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/composer.json b/composer.json
index 0923c2ff7..4847cef8f 100644
--- a/composer.json
+++ b/composer.json
@@ -43,8 +43,9 @@
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
"phan": "phan --allow-polyfill-parser -k .phan/config.php",
- "test": "phpunit -c tests/phpunit.xml --fail-on-warning",
- "test:unit": "phpunit -c tests/phpunit.xml tests --fail-on-warning",
- "test:unit:dev": "phpunit -c tests/phpunit.xml tests --no-coverage --fail-on-warning"
+ "test:integration": "phpunit -c tests/phpunit.integration.xml tests/Integration --fail-on-warning",
+ "test:integration:dev": "phpunit -c tests/phpunit.integration.xml tests/Integration --no-coverage --fail-on-warning",
+ "test:unit": "phpunit -c tests/phpunit.unit.xml tests/Unit --fail-on-warning",
+ "test:unit:dev": "phpunit -c tests/phpunit.unit.xml tests/Unit --no-coverage --fail-on-warning"
}
}