##// END OF EJS Templates
swallow stdout and report time for build/install step in test_pr...
swallow stdout and report time for build/install step in test_pr The vast majority of the output of test_pr is uninteresting stdout for install. It's also possible for system-site-packages envs to end up importing IPython *not* from the install we mean to test, so add a check for that.

File last commit:

r2460:e8303d57
r8113:5d68b79f
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')