summaryrefslogtreecommitdiff
path: root/test/engine/test_execute.py
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/test_execute.py
parentad86d32f7fbd1c6deda8ff3bebe0595c0f2986cc (diff)
downloadsqlalchemy-fcbdae075bb3f3a4ecc9b36e5787bba6b80af9c1.tar.gz
Add support for the new oracle driver ``oracledb``.
Fixes: #8054 Change-Id: Idd7c1bbb7ca39499f53bdf59a63a6a9d65f144a5
Diffstat (limited to 'test/engine/test_execute.py')
-rw-r--r--test/engine/test_execute.py4
1 files changed, 4 insertions, 0 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