diff options
author | Christian Heimes <christian@python.org> | 2022-05-05 22:08:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 22:08:43 (GMT) |
commit | bb35d6504aca0348c212281efbdde2caf84cd116 (patch) | |
tree | 739c8e97cd2ced4d97e2768f803cdbcd90b1d373 /Lib/test/test_cppext.py | |
parent | c0012df0f6535cc804d5d97be9b16482e4e0c2a5 (diff) | |
download | cpython-bb35d6504aca0348c212281efbdde2caf84cd116.zip cpython-bb35d6504aca0348c212281efbdde2caf84cd116.tar.gz cpython-bb35d6504aca0348c212281efbdde2caf84cd116.tar.bz2 |
gh-92135: test_cppext requires subprocess (GH-92349)
Diffstat (limited to 'Lib/test/test_cppext.py')
-rw-r--r-- | Lib/test/test_cppext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_cppext.py b/Lib/test/test_cppext.py index e056410..337cb08 100644 --- a/Lib/test/test_cppext.py +++ b/Lib/test/test_cppext.py @@ -37,6 +37,7 @@ else: CPPFLAGS = [] +@support.requires_subprocess() class TestCPPExt(unittest.TestCase): def build(self): cpp_ext = Extension( |