summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2021-10-05 13:25:23 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2021-10-05 13:25:23 +0000
commitd5d30480f3f62f772e59708d0d065de13f01daf1 (patch)
tree4316bc90713b6c51acfef637b1f9f04b5f9c7b0f /tests
parent8d166b17aa7b1c4ec058fa31e489a57b3a7f5cbf (diff)
parented3428ec969d12befe7bbbe5c8b6b34ffea29e2e (diff)
downloadalembic-d5d30480f3f62f772e59708d0d065de13f01daf1.tar.gz
Merge "frame a transaction around autocommit"
Diffstat (limited to 'tests')
-rw-r--r--tests/test_postgresql.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_postgresql.py b/tests/test_postgresql.py
index b41c383..dc0f544 100644
--- a/tests/test_postgresql.py
+++ b/tests/test_postgresql.py
@@ -48,6 +48,7 @@ from alembic.testing.env import clear_staging_env
from alembic.testing.env import staging_env
from alembic.testing.env import write_script
from alembic.testing.fixtures import capture_context_buffer
+from alembic.testing.fixtures import FutureEngineMixin
from alembic.testing.fixtures import op_fixture
from alembic.testing.fixtures import TablesTest
from alembic.testing.fixtures import TestBase
@@ -457,6 +458,10 @@ class PGAutocommitBlockTest(TestBase):
)
+class PGAutocommitBlockTestFuture(FutureEngineMixin, PGAutocommitBlockTest):
+ pass
+
+
class PGOfflineEnumTest(TestBase):
def setUp(self):
staging_env()