Merge pull request #10032 from owncloud/kill-swift-tests
only if the environment variable RUN_OBJECTSTORE_TESTS is set the object...
This commit is contained in:
commit
06d118d06c
|
@ -31,6 +31,9 @@ class Swift extends \Test\Files\Storage\Storage {
|
||||||
private $objectStorage;
|
private $objectStorage;
|
||||||
|
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
|
if (!getenv('RUN_OBJECTSTORE_TESTS')) {
|
||||||
|
$this->markTestSkipped('objectstore tests are unreliable on travis');
|
||||||
|
}
|
||||||
|
|
||||||
\OC_App::disable('files_sharing');
|
\OC_App::disable('files_sharing');
|
||||||
\OC_App::disable('files_versions');
|
\OC_App::disable('files_versions');
|
||||||
|
|
Loading…
Reference in New Issue