@@ -1265,7 +1265,7 @@ def test_dumb_terminal_exits_cleanly(self):
12651265        env  =  os .environ .copy ()
12661266        env .pop ('PYTHON_BASIC_REPL' , None )
12671267        env .update ({"TERM" : "dumb" })
1268-         output , exit_code  =  self .run_repl ("exit()\n " , env = env )
1268+         output , exit_code  =  self .run_repl ("exit()\n " , env = env ,  skip = False )
12691269        self .assertEqual (exit_code , 0 )
12701270        self .assertIn ("warning: can't use pyrepl" , output )
12711271        self .assertNotIn ("Exception" , output )
@@ -1388,8 +1388,6 @@ def test_python_basic_repl(self):
13881388
13891389        env .pop ("PYTHON_BASIC_REPL" , None )
13901390        output , exit_code  =  self .run_repl (commands , env = env )
1391-         if  "can\' t use pyrepl"  in  output :
1392-             self .skipTest ("pyrepl not available" )
13931391        self .assertEqual (exit_code , 0 )
13941392        self .assertIn ("True" , output )
13951393        self .assertNotIn ("False" , output )
@@ -1457,8 +1455,6 @@ def check(output, exitcode):
14571455            self .assertEqual (exitcode , 0 )
14581456        env .pop ("PYTHON_BASIC_REPL" , None )
14591457        output , exit_code  =  self .run_repl (commands , env = env )
1460-         if  "can\' t use pyrepl"  in  output :
1461-             self .skipTest ("pyrepl not available" )
14621458        check (output , exit_code )
14631459
14641460        env ["PYTHON_BASIC_REPL" ] =  "1" 
0 commit comments