Skip to content

Commit

Permalink
pipe STDERR to STDOUT when installing NX so its output is also writte…
Browse files Browse the repository at this point in the history
…n to the log, see networkx#753 .
  • Loading branch information
jtorrents committed Aug 12, 2012
1 parent 7996b19 commit af0105c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test_pr.py
Expand Up @@ -257,7 +257,7 @@ def run_tests(venv):
logfile = os.path.join(basedir, venv, 'install.log')
print ("Install log at %s" % logfile)
with open(logfile, 'wb') as f:
check_call([py, 'setup.py', 'install'], stdout=f)
check_call([py, 'setup.py', 'install'], stderr=STDOUT, stdout=f)
#toc = time.time()
#print ("Installed NetworkX in %.1fs" % (toc-tic))
os.chdir(basedir)
Expand Down

0 comments on commit af0105c

Please sign in to comment.