diff options
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/db/migrator.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/db/migrator.php b/tests/lib/db/migrator.php index 31dc1c4951a..5d85bd98f31 100644 --- a/tests/lib/db/migrator.php +++ b/tests/lib/db/migrator.php @@ -22,6 +22,9 @@ class Migrator extends \PHPUnit_Framework_TestCase { private $tableName; public function setUp() { + if ($this->connection->getDriver() instanceof \Doctrine\DBAL\Driver\OCI8\Driver) { + $this->markTestSkipped('DB migration tests arent supported on OCI'); + } $this->tableName = 'test_' . uniqid(); $this->connection = \OC_DB::getConnection(); } |