File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Lib/test/test_concurrent_futures Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -107,10 +107,12 @@ env:
107107 test_yield_from
108108 ENV_POLLUTING_TESTS_COMMON : >-
109109 ENV_POLLUTING_TESTS_LINUX : >-
110+ test.test_concurrent_futures.test_shutdown
110111 test.test_multiprocessing_fork.test_processes
111112 test.test_multiprocessing_forkserver.test_processes
112113 test.test_multiprocessing_spawn.test_processes
113114 ENV_POLLUTING_TESTS_MACOS : >-
115+ test.test_concurrent_futures.test_shutdown
114116 test.test_multiprocessing_forkserver.test_processes
115117 test.test_multiprocessing_spawn.test_processes
116118 ENV_POLLUTING_TESTS_WINDOWS : >-
Original file line number Diff line number Diff line change 33import threading
44import time
55import unittest
6+ import os # XXX: RUSTPYTHON
67from concurrent import futures
78
89from test import support
@@ -20,6 +21,10 @@ def sleep_and_print(t, msg):
2021 sys .stdout .flush ()
2122
2223
24+ @unittest .skipIf ( # TODO: RUSTPYTHON
25+ 'RUSTPYTHON_SKIP_ENV_POLLUTERS' in os .environ , # TODO: RUSTPYTHON
26+ 'TODO: RUSTPYTHON environment pollution when running rustpython -m test --fail-env-changed due to unknown reason'
27+ ) # TODO: RUSTPYTHON
2328class ExecutorShutdownTest :
2429 def test_run_after_shutdown (self ):
2530 self .executor .shutdown ()
You can’t perform that action at this time.
0 commit comments