Commit d715e5ae authored by Tarek Ziade's avatar Tarek Ziade

skipping a tets if in virtualenv

--HG--
branch : distribute
extra : rebase_source : c0928a6dc8eaa695a8abedd25c9defb0561145a3
parent 2c7c3ba7
...@@ -43,7 +43,7 @@ class TestDevelopTest(unittest.TestCase): ...@@ -43,7 +43,7 @@ class TestDevelopTest(unittest.TestCase):
site.USER_SITE = self.old_site site.USER_SITE = self.old_site
def test_develop(self): def test_develop(self):
if sys.version < "2.6": if sys.version < "2.6" or hasattr(sys, 'real_prefix'):
return return
dist = Distribution() dist = Distribution()
dist.script_name = 'setup.py' dist.script_name = 'setup.py'
......
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