@@ -82,7 +82,6 @@ def tearDown(self):
8282 # Reset the private cached state.
8383 script_helper .__dict__ ['__cached_interp_requires_environment' ] = None
8484
85- @unittest .skipIf (sys .platform == "win32" , "TODO: RUSTPYTHON, ValueError: illegal environment variable name" )
8685 @mock .patch ('subprocess.check_call' )
8786 def test_interpreter_requires_environment_true (self , mock_check_call ):
8887 with mock .patch .dict (os .environ ):
@@ -92,7 +91,6 @@ def test_interpreter_requires_environment_true(self, mock_check_call):
9291 self .assertTrue (script_helper .interpreter_requires_environment ())
9392 self .assertEqual (1 , mock_check_call .call_count )
9493
95- @unittest .skipIf (sys .platform == "win32" , "TODO: RUSTPYTHON, ValueError: illegal environment variable name" )
9694 @mock .patch ('subprocess.check_call' )
9795 def test_interpreter_requires_environment_false (self , mock_check_call ):
9896 with mock .patch .dict (os .environ ):
@@ -102,7 +100,6 @@ def test_interpreter_requires_environment_false(self, mock_check_call):
102100 self .assertFalse (script_helper .interpreter_requires_environment ())
103101 self .assertEqual (1 , mock_check_call .call_count )
104102
105- @unittest .skipIf (sys .platform == "win32" , "TODO: RUSTPYTHON, ValueError: illegal environment variable name" )
106103 @mock .patch ('subprocess.check_call' )
107104 def test_interpreter_requires_environment_details (self , mock_check_call ):
108105 with mock .patch .dict (os .environ ):
@@ -115,7 +112,6 @@ def test_interpreter_requires_environment_details(self, mock_check_call):
115112 self .assertEqual (sys .executable , check_call_command [0 ])
116113 self .assertIn ('-E' , check_call_command )
117114
118- @unittest .skipIf (sys .platform == "win32" , "TODO: RUSTPYTHON, ValueError: illegal environment variable name" )
119115 @mock .patch ('subprocess.check_call' )
120116 def test_interpreter_requires_environment_with_pythonhome (self , mock_check_call ):
121117 with mock .patch .dict (os .environ ):
0 commit comments