summaryrefslogtreecommitdiff
path: root/test/engine
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-06-07 18:46:36 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-06-07 18:46:36 +0000
commit1961e1321440a1e0500ecd13624837ed088eaceb (patch)
treedf1587f23f982ea14b1b6bb99b6c2039e2c4105b /test/engine
parentc0736e0b2a3bf8c0952db84f5b9943df9ebf18f7 (diff)
parentfcbdae075bb3f3a4ecc9b36e5787bba6b80af9c1 (diff)
downloadsqlalchemy-1961e1321440a1e0500ecd13624837ed088eaceb.tar.gz
Merge "Add support for the new oracle driver ``oracledb``." into main
Diffstat (limited to 'test/engine')
-rw-r--r--test/engine/test_execute.py4
-rw-r--r--test/engine/test_reconnect.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index 7f662bc6e..196b70340 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -562,6 +562,10 @@ class ExecuteTest(fixtures.TablesTest):
"oracle+cx_oracle",
"cx_oracle exception seems to be having some issue with pickling",
)
+ @testing.fails_on(
+ "oracle+oracledb",
+ "oracledb exception seems to be having some issue with pickling",
+ )
def test_stmt_exception_pickleable_plus_dbapi(self):
raw = testing.db.raw_connection()
the_orig = None
diff --git a/test/engine/test_reconnect.py b/test/engine/test_reconnect.py
index 703cfa8a6..2a6b21e6b 100644
--- a/test/engine/test_reconnect.py
+++ b/test/engine/test_reconnect.py
@@ -1360,10 +1360,6 @@ class InvalidateDuringResultTest(fixtures.TestBase):
self.meta.drop_all(conn)
self.engine.dispose()
- @testing.crashes(
- "oracle",
- "cx_oracle 6 doesn't allow a close like this due to open cursors",
- )
@testing.fails_if(
[
"+mysqlconnector",