Skip to content
Snippets Groups Projects
Commit 1a7d80ac authored by Thomas Müller's avatar Thomas Müller
Browse files

only if the environment variable RUN_OBJECTSTORE_TESTS is set the object store...

only if the environment variable RUN_OBJECTSTORE_TESTS is set the object store unit test will be executed
parent a7798786
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,9 @@ class Swift extends \Test\Files\Storage\Storage {
private $objectStorage;
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_versions');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment