Skip to content

Commit 9fc0643

Browse files
committed
1 parent 8095b15 commit 9fc0643

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
# these pip packages are necessary for the pyignite_dbapi to run
2-
3-
attrs==23.1.0
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# these packages are used for testing
22

3-
pytest==6.2.5
4-
pytest-cov==2.11.1
5-
teamcity-messages==1.28
3+
pytest==8.2.2
4+
teamcity-messages==1.33
65
psutil==5.8.0
7-
flake8==3.8.4
86
dbapi-compliance==1.15.0

modules/platforms/python/dbapi/tests/test_concurrency.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
import threading
1717
import time
18-
from builtins import ExceptionGroup
1918

2019
import pytest
2120

@@ -61,7 +60,7 @@ def wrapper(tid):
6160
t.join()
6261

6362
if errors:
64-
raise ExceptionGroup("thread errors", errors)
63+
raise errors[0]
6564

6665

6766
def test_concurrent_module_import(module_level_threadsafety):
@@ -160,7 +159,7 @@ def task(_):
160159

161160
run_threads(task)
162161
if errors:
163-
raise ExceptionGroup("result integrity errors", errors)
162+
raise errors[0]
164163

165164

166165
def test_cursor_description_thread_safety(table, connection, connection_level_threadsafety):

0 commit comments

Comments
 (0)