Disable integration tests until they are improved (#242)

This commit is contained in:
Tobias Nyholm 2016-12-06 18:02:32 +01:00 committed by Sean Johnson
parent d12ea9f456
commit 751770d32c
2 changed files with 4 additions and 3 deletions

View File

@ -33,8 +33,8 @@
],
"scripts": {
"test": "vendor/bin/phpunit --testsuite unit && vendor/bin/phpunit --testsuite functional",
"test-all": "vendor/bin/phpunit",
"test-all": "vendor/bin/phpunit --testsuite all",
"test-integration": "vendor/bin/phpunit --testsuite integration",
"test-coverage": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
"test-coverage": "vendor/bin/phpunit --testsuite all --coverage-text --coverage-clover=build/coverage.xml"
}
}

View File

@ -10,8 +10,9 @@
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
<testsuites>
<testsuite>
<testsuite name="all">
<directory>tests</directory>
<exclude>tests/Integration</exclude>
</testsuite>
<testsuite name="unit">