File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ def task_example():
173
173
174
174
175
175
@pytest .mark .end_to_end
176
- @pytest .mark .xfail (reason = "#312" )
176
+ @pytest .mark .xfail (os . environ . get ( "CI" ) == "true" , reason = "#312" )
177
177
@pytest .mark .skipif (not IS_PEXPECT_INSTALLED , reason = "pexpect is not installed." )
178
178
@pytest .mark .skipif (sys .platform == "win32" , reason = "pexpect cannot spawn on Windows." )
179
179
def test_pdb_interaction_capturing_simple (tmp_path ): # pragma: no cover
@@ -285,7 +285,7 @@ def task_2():
285
285
286
286
287
287
@pytest .mark .end_to_end
288
- @pytest .mark .xfail (reason = "#312" )
288
+ @pytest .mark .xfail (os . environ . get ( "CI" ) == "true" , reason = "#312" )
289
289
@pytest .mark .skipif (not IS_PEXPECT_INSTALLED , reason = "pexpect is not installed." )
290
290
@pytest .mark .skipif (sys .platform == "win32" , reason = "pexpect cannot spawn on Windows." )
291
291
def test_pdb_interaction_capturing_twice (tmp_path ): # pragma: no cover
You can’t perform that action at this time.
0 commit comments