Skip to content

Commit f492bb4

Browse files
Skip tests that will not work correctly when using DRCP.
1 parent 7feff3d commit f492bb4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

tests/test_1100_connection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def test_1100(self):
7575
)
7676
self.assertEqual(conn.thin, test_env.get_is_thin())
7777

78+
@unittest.skipIf(test_env.get_is_drcp(), "not supported with DRCP")
7879
@unittest.skipIf(
7980
test_env.get_is_thin(),
8081
"thin mode doesn't support application context yet",

tests/test_2400_pool.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ def test_2406(self):
336336
cursor.close()
337337
pool.release(conn)
338338

339+
@unittest.skipIf(test_env.get_is_drcp(), "not supported with DRCP")
339340
@unittest.skipIf(
340341
test_env.get_is_thin(), "thin mode doesn't support proxy users yet"
341342
)
@@ -371,6 +372,7 @@ def test_2407(self):
371372
)
372373
conn.close()
373374

375+
@unittest.skipIf(test_env.get_is_drcp(), "not supported with DRCP")
374376
@unittest.skipIf(
375377
test_env.get_is_thin(), "thin mode doesn't support proxy users yet"
376378
)

0 commit comments

Comments
 (0)