summaryrefslogtreecommitdiff
path: root/tests/test_config_cmd.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-18 16:41:01 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-18 16:41:01 +0200
commit89924f9e965ce58b5ceab3545989e6d827931d2f (patch)
tree9f30a9329427bb1ff41b4e1704e8ca90b0094fd7 /tests/test_config_cmd.py
parentf011989a6fd186c6f0d5bfd7506ef6ebe6ae9513 (diff)
downloadpython-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.py3
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)