diff options
-rw-r--r-- | yoyo/tests/test_backends.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yoyo/tests/test_backends.py b/yoyo/tests/test_backends.py index 63fbfe4..d4027b0 100644 --- a/yoyo/tests/test_backends.py +++ b/yoyo/tests/test_backends.py @@ -105,10 +105,10 @@ class TestTransactionHandling(object): are run within a transaction block. As far as I know this behavior is PostgreSQL specific. We can't run - this test in sqlite as it does not support CREATE DATABASE. + this test in sqlite or oracle as they do not support CREATE DATABASE. """ from yoyo import read_migrations - for backend in get_test_backends(exclude={'sqlite'}): + for backend in get_test_backends(exclude={'sqlite', 'oracle'}): migrations = read_migrations(tmpdir) backend.apply_migrations(migrations) backend.rollback_migrations(migrations) |