aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_develop.py
diff options
context:
space:
mode:
authorTarek Ziade <tarek@ziade.org>2011-05-26 12:12:42 +0200
committerTarek Ziade <tarek@ziade.org>2011-05-26 12:12:42 +0200
commitd715e5ae9aeabfec93c9f4478f9933f9b991b06a (patch)
treefbcb29b063712692dc62748fab1a5c088f3abbc5 /setuptools/tests/test_develop.py
parent2c7c3ba77385bd56ed6f8f59abdeff78cca3fe8a (diff)
downloadexternal_python_setuptools-d715e5ae9aeabfec93c9f4478f9933f9b991b06a.tar.gz
external_python_setuptools-d715e5ae9aeabfec93c9f4478f9933f9b991b06a.tar.bz2
external_python_setuptools-d715e5ae9aeabfec93c9f4478f9933f9b991b06a.zip
skipping a tets if in virtualenv
--HG-- branch : distribute extra : rebase_source : c0928a6dc8eaa695a8abedd25c9defb0561145a3
Diffstat (limited to 'setuptools/tests/test_develop.py')
-rw-r--r--setuptools/tests/test_develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py
index a567dd5a..5576d5e5 100644
--- a/setuptools/tests/test_develop.py
+++ b/setuptools/tests/test_develop.py
@@ -43,7 +43,7 @@ class TestDevelopTest(unittest.TestCase):
site.USER_SITE = self.old_site
def test_develop(self):
- if sys.version < "2.6":
+ if sys.version < "2.6" or hasattr(sys, 'real_prefix'):
return
dist = Distribution()
dist.script_name = 'setup.py'