diff options
| author | Christian Heimes <christian@python.org> | 2022-01-25 07:09:06 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-25 07:09:06 (GMT) |
| commit | 8464fbc42ecc9ce504faac499711dcdc6eedef16 (patch) | |
| tree | 1992e76c83da4720bc1dbc95901a417e0a4781e3 /Lib/test/test_py_compile.py | |
| parent | e1abffca45b60729c460e3e2ad50c8c1946cfd4e (diff) | |
| download | cpython-8464fbc42ecc9ce504faac499711dcdc6eedef16.zip cpython-8464fbc42ecc9ce504faac499711dcdc6eedef16.tar.gz cpython-8464fbc42ecc9ce504faac499711dcdc6eedef16.tar.bz2 | |
bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)
Diffstat (limited to 'Lib/test/test_py_compile.py')
| -rw-r--r-- | Lib/test/test_py_compile.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_py_compile.py b/Lib/test/test_py_compile.py index 5ed98db..794d643 100644 --- a/Lib/test/test_py_compile.py +++ b/Lib/test/test_py_compile.py @@ -230,6 +230,7 @@ class PyCompileCLITestCase(unittest.TestCase): def tearDown(self): os_helper.rmtree(self.directory) + @support.requires_subprocess() def pycompilecmd(self, *args, **kwargs): # assert_python_* helpers don't return proc object. We'll just use # subprocess.run() instead of spawn_python() and its friends to test |
