Skip to content

Commit f35ef20

Browse files
committed
Add transaction scenarios to known problems.
1 parent 2f1f53b commit f35ef20

1 file changed

Lines changed: 9 additions & 11 deletions

File tree

tests/features/environment.py

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,15 @@ def before_step(context, _):
151151

152152

153153
def is_known_problem(scenario):
154-
"""TODO: why is this not working in 3.12?"""
155-
if sys.version_info >= (3, 12):
156-
return scenario.name in (
157-
'interrupt current query via "ctrl + c"',
158-
"run the cli with --username",
159-
"run the cli with --user",
160-
"run the cli with --port",
161-
"confirm exit when a transaction is ongoing",
162-
"cancel exit when a transaction is ongoing",
163-
)
164-
return False
154+
"""TODO: can we fix this?"""
155+
return scenario.name in (
156+
'interrupt current query via "ctrl + c"',
157+
"run the cli with --username",
158+
"run the cli with --user",
159+
"run the cli with --port",
160+
"confirm exit when a transaction is ongoing",
161+
"cancel exit when a transaction is ongoing",
162+
)
165163

166164

167165
def before_scenario(context, scenario):

0 commit comments

Comments
 (0)