diff options
author | tarek <none@none> | 2009-08-08 21:10:11 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-08-08 21:10:11 +0200 |
commit | 96f2536dcc1056dffa72f0877f1683b6633440f0 (patch) | |
tree | 19b9e79451aca738677aa72cf67a444a97be61c6 /tests/install_test.py | |
parent | def1a4f577242d326a93268c2851e2b3f48c5329 (diff) | |
download | external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.tar.gz external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.tar.bz2 external_python_setuptools-96f2536dcc1056dffa72f0877f1683b6633440f0.zip |
bootstrapping.py -> distribute_setup.py
--HG--
branch : distribute
extra : rebase_source : 4e57a0bc1a8bea73bc8ed0f102d0e0907c554235
Diffstat (limited to 'tests/install_test.py')
-rw-r--r-- | tests/install_test.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/install_test.py b/tests/install_test.py index e507a39b..02deb818 100644 --- a/tests/install_test.py +++ b/tests/install_test.py @@ -2,8 +2,8 @@ import urllib2 import sys import os -if os.path.exists('bootstrapping.py'): - print 'bootstrapping.py exists in the current dir, aborting' +if os.path.exists('distribute_setup.py'): + print 'distribute_setup.py exists in the current dir, aborting' sys.exit(2) print '**** Starting Test' @@ -14,13 +14,13 @@ if is_jython: import subprocess print 'Downloading bootstrap' -file = urllib2.urlopen('http://nightly.ziade.org/bootstrapping.py') -f = open('bootstrapping.py', 'w') +file = urllib2.urlopen('http://nightly.ziade.org/distribute_setup.py') +f = open('distribute_setup.py', 'w') f.write(file.read()) f.close() # running it -args = [sys.executable] + ['bootstrapping.py'] +args = [sys.executable] + ['distribute_setup.py'] if is_jython: res = subprocess.call(args) else: @@ -28,7 +28,7 @@ else: if res != 0: print '**** Test failed, please send me the output at tarek@ziade.org' - os.remove('bootstrapping.py') + os.remove('distribute_setup.py') sys.exit(2) # now checking if Distribute is installed @@ -71,5 +71,5 @@ try: finally: if os.path.exists(script_name): os.remove(script_name) - os.remove('bootstrapping.py') + os.remove('distribute_setup.py') |