We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1f53b commit f35ef20Copy full SHA for f35ef20
1 file changed
tests/features/environment.py
@@ -151,17 +151,15 @@ def before_step(context, _):
151
152
153
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
+ """TODO: can we fix this?"""
+ return scenario.name in (
+ 'interrupt current query via "ctrl + c"',
+ "run the cli with --username",
+ "run the cli with --user",
+ "run the cli with --port",
+ "confirm exit when a transaction is ongoing",
+ "cancel exit when a transaction is ongoing",
+ )
165
166
167
def before_scenario(context, scenario):
0 commit comments