[Jython-checkins] jython: Add skips.

frank.wierzbicki jython-checkins at python.org
Thu Jun 28 19:37:41 CEST 2012


http://hg.python.org/jython/rev/2552ad28c8fc
changeset:   6766:2552ad28c8fc
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Wed Jun 27 19:44:28 2012 -0700
summary:
  Add skips.

files:
  Lib/test/test_pkgutil.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_pkgutil.py b/Lib/test/test_pkgutil.py
--- a/Lib/test/test_pkgutil.py
+++ b/Lib/test/test_pkgutil.py
@@ -1,4 +1,4 @@
-from test.test_support import run_unittest
+from test.test_support import run_unittest, is_jython
 import unittest
 import sys
 import imp
@@ -78,6 +78,7 @@
 
         del sys.modules[pkg]
 
+    @unittest.skipIf(is_jython, "FIXME: not working on Jython")
     def test_unreadable_dir_on_syspath(self):
         # issue7367 - walk_packages failed if unreadable dir on sys.path
         package_name = "unreadable_package"

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list