mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
skip tests for oracle
This commit is contained in:
parent
3b4555ca91
commit
b4cee3d4e9
1 changed files with 3 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue