File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 119119 test.test_multiprocessing_spawn.test_processes
120120 test.test_multiprocessing_spawn.test_threads
121121 ENV_POLLUTING_TESTS_WINDOWS : >-
122+ test.test_tempfile.TestTemporaryDirectory.test_cleanup_with_symlink_modes
122123 # Python version targeted by the CI.
123124 PYTHON_VERSION : " 3.13.1"
124125 X86_64_PC_WINDOWS_MSVC_OPENSSL_LIB_DIR : C:\Program Files\OpenSSL\lib\VC\x64\MD
Original file line number Diff line number Diff line change @@ -1006,6 +1006,7 @@ def test_context(self):
10061006 self .assertIs (sock .context , ctx )
10071007 self .assertIsInstance (sock , ssl .SSLSocket )
10081008
1009+ @unittest .skip ('TODO: RUSTPYTHON; flaky' )
10091010 def test_ccc (self ):
10101011 self .assertRaises (ValueError , self .client .ccc )
10111012 self .client .login (secure = True )
Original file line number Diff line number Diff line change @@ -1735,7 +1735,10 @@ def test_cleanup_with_symlink_to_a_directory(self):
17351735 d2 .cleanup ()
17361736
17371737 @os_helper .skip_unless_symlink
1738- @unittest .skip ('TODO: RUSTPYTHON; alters the execution environment (env changed)' )
1738+ @unittest .skipIf (
1739+ sys .platform == 'win32' and 'RUSTPYTHON_SKIP_ENV_POLLUTERS' in os .environ ,
1740+ 'TODO: RUSTPYTHON; alters the execution environment (env changed)'
1741+ )
17391742 def test_cleanup_with_symlink_modes (self ):
17401743 # cleanup() should not follow symlinks when fixing mode bits (#91133)
17411744 with self .do_create (recurse = 0 ) as d2 :
You can’t perform that action at this time.
0 commit comments