Kaydet (Commit) b7019d8e authored tarafından Brett Cannon's avatar Brett Cannon

Expand upon test_site.test_s_option to try to debug its failure.

üst 8c56f889
......@@ -102,7 +102,8 @@ class HelperFunctionsTests(unittest.TestCase):
rc = subprocess.call([sys.executable, '-c',
'import sys; sys.exit(%r in sys.path)' % usersite])
self.assertEqual(rc, 1)
self.assertEqual(rc, 1, "%r is not in sys.path (sys.exit returned %r)"
% (usersite, rc))
rc = subprocess.call([sys.executable, '-s', '-c',
'import sys; sys.exit(%r in sys.path)' % usersite])
......
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