summaryrefslogtreecommitdiff
path: root/test/engine
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2022-06-03 14:51:04 +0200
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-07 12:59:57 -0400
commitfcbdae075bb3f3a4ecc9b36e5787bba6b80af9c1 (patch)
tree1df26ffe2f4dece2cc6df4e58cdaee157a2fc010 /test/engine
parentad86d32f7fbd1c6deda8ff3bebe0595c0f2986cc (diff)
downloadsqlalchemy-fcbdae075bb3f3a4ecc9b36e5787bba6b80af9c1.tar.gz
Add support for the new oracle driver ``oracledb``.
Fixes: #8054 Change-Id: Idd7c1bbb7ca39499f53bdf59a63a6a9d65f144a5
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",