Skip to content

Commit

Permalink
complete removal of doctest harness
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Meyer committed Mar 9, 2010
1 parent 6bece5c commit 15d872e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_pip.py
Expand Up @@ -49,11 +49,7 @@ def reset_env(environ=None):
def run_pip(*args, **kw):
args = (sys.executable, '-c', 'import pip; pip.main()', '-E', env.base_path) + args
#print >> sys.__stdout__, 'running', ' '.join(args)
if getattr(options, 'show_error', False):
kw['expect_error'] = True
result = env.run(*args, **kw)
if getattr(options, 'show_error', False) and result.returncode:
print result
return result

def write_file(filename, text):
Expand Down

0 comments on commit 15d872e

Please sign in to comment.