Commit fcfd0cb5 authored by Benjamin Peterson's avatar Benjamin Peterson

skip test when distutils is not made for py3k

parent 36b50be6
......@@ -202,10 +202,10 @@ class RegisterTestCase(PyPIRCCommandTestCase):
self.assertRaises(DistutilsSetupError, cmd.run)
# we don't test the reSt feature if docutils
# is not installed
# is not installed or we our on py3k
try:
import docutils
except ImportError:
except Exception:
return
# metadata are OK but long_description is broken
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment