Remove test_ssl from list of polluters

This commit is contained in:
Padraic Fanning
2026-01-10 21:37:25 -05:00
parent 8d505dc0e5
commit f9a1f2bda8
2 changed files with 0 additions and 5 deletions

View File

@@ -106,7 +106,6 @@ env:
test_weakref
test_yield_from
ENV_POLLUTING_TESTS_COMMON: >-
test_ssl
test_threading
ENV_POLLUTING_TESTS_LINUX: >-
test.test_concurrent_futures.test_thread_pool

View File

@@ -4299,10 +4299,6 @@ class ThreadedTests(unittest.TestCase):
sni_name='supermessage')
self.assertEqual(cm.exception.reason, 'TLSV1_ALERT_ACCESS_DENIED')
@unittest.skipIf(
'RUSTPYTHON_SKIP_ENV_POLLUTERS' in os.environ,
"TODO: RUSTPYTHON environment pollution when running rustpython -m test --fail-env-changed due to unraisable exception"
)
@unittest.expectedFailure # TODO: RUSTPYTHON
def test_sni_callback_raising(self):
# Raising fails the connection with a TLS handshake failure alert.