Skip to content

Commit fd9c111

Browse files
authored
test(FIR-47589): Fix async tests (#115)
1 parent cfaaa2c commit fd9c111

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[pytest]
2-
trio_mode = true
2+
asyncio_mode = auto
33
markers =
44
core: mark test to run only on Firebolt Core.

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ dev =
4848
mock==4.0.3
4949
mypy==0.910
5050
pre-commit==3.5.0
51-
pytest==7.2.0
51+
pytest==8.2.0
52+
pytest-asyncio==1.*
5253
pytest-cov==3.0.0
5354
pytest-trio==0.8.0
5455
sqlalchemy-stubs==0.4

tests/integration/test_sqlalchemy_async_integration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from sqlalchemy.engine.base import Connection, Engine
66

77

8-
@pytest.mark.skip("FIR-47589")
98
@pytest.mark.usefixtures("setup_test_tables")
109
class TestAsyncFireboltDialect:
1110
async def test_create_ex_table(

0 commit comments

Comments
 (0)