diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-01 22:09:26 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-01 22:09:26 -0400 |
| commit | 89d64e81e194d5b8b8a500e837b9cea4f2e1063e (patch) | |
| tree | a46b3e368abb224d890f341346207d38ad4f5705 | |
| parent | 50d17611942813f840a69c4838173b2c4dc27f24 (diff) | |
| download | external_python_setuptools-89d64e81e194d5b8b8a500e837b9cea4f2e1063e.tar.gz external_python_setuptools-89d64e81e194d5b8b8a500e837b9cea4f2e1063e.tar.bz2 external_python_setuptools-89d64e81e194d5b8b8a500e837b9cea4f2e1063e.zip | |
Skip test on PyPy where the functionality is disabled.
| -rw-r--r-- | distutils/tests/test_sysconfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distutils/tests/test_sysconfig.py b/distutils/tests/test_sysconfig.py index 236755d0..d5076391 100644 --- a/distutils/tests/test_sysconfig.py +++ b/distutils/tests/test_sysconfig.py @@ -45,6 +45,7 @@ class SysconfigTestCase(support.EnvironGuard, unittest.TestCase): self.assertIsInstance(cvars, dict) self.assertTrue(cvars) + @unittest.skip('sysconfig.IS_PYPY') def test_srcdir(self): # See Issues #15322, #15364. srcdir = sysconfig.get_config_var('srcdir') |
