diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-18 16:41:01 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-18 16:41:01 +0200 |
| commit | 89924f9e965ce58b5ceab3545989e6d827931d2f (patch) | |
| tree | 9f30a9329427bb1ff41b4e1704e8ca90b0094fd7 /tests/test_config_cmd.py | |
| parent | f011989a6fd186c6f0d5bfd7506ef6ebe6ae9513 (diff) | |
| download | python-setuptools-git-89924f9e965ce58b5ceab3545989e6d827931d2f.tar.gz | |
Issue #19492: Silently skipped distutils tests now reported as skipped.
Diffstat (limited to 'tests/test_config_cmd.py')
| -rw-r--r-- | tests/test_config_cmd.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_config_cmd.py b/tests/test_config_cmd.py index 79894c78..0c8dbd82 100644 --- a/tests/test_config_cmd.py +++ b/tests/test_config_cmd.py @@ -37,9 +37,8 @@ class ConfigTestCase(support.LoggingSilencer, dump_file(this_file, 'I am the header') self.assertEqual(len(self._logs), numlines+1) + @unittest.skipIf(sys.platform == 'win32', "can't test on Windows") def test_search_cpp(self): - if sys.platform == 'win32': - return pkg_dir, dist = self.create_dist() cmd = config(dist) |
