diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index b91791a02a2..a08cb98a971 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -494,6 +494,8 @@ def test_executable_with_cwd(self): 'Test is not venv-compatible') @unittest.skipIf(sysconfig.is_python_build(), "need an installed Python. See #7774") + @unittest.skipIf(getattr(sys.implementation, '_is_cinder', False), + "Cinder tests aren't installed Python") def test_executable_without_cwd(self): # For a normal installation, it should work without 'cwd' # argument. For test runs in the build directory, see #7774.