mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)
This commit is contained in:
parent
e1abffca45
commit
8464fbc42e
42 changed files with 139 additions and 23 deletions
|
@ -3,7 +3,7 @@ import os
|
|||
import stat
|
||||
import sys
|
||||
import unittest.mock
|
||||
from test.support import run_unittest, unix_shell
|
||||
from test.support import run_unittest, unix_shell, requires_subprocess
|
||||
from test.support import os_helper
|
||||
|
||||
from distutils.spawn import find_executable
|
||||
|
@ -11,6 +11,8 @@ from distutils.spawn import spawn
|
|||
from distutils.errors import DistutilsExecError
|
||||
from distutils.tests import support
|
||||
|
||||
|
||||
@requires_subprocess()
|
||||
class SpawnTestCase(support.TempdirManager,
|
||||
support.LoggingSilencer,
|
||||
unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue