##// END OF EJS Templates
Reduce travis testing....
Reduce travis testing. Travis seem to now have a lower limit on open-source builds; so reduce dependency on Travis to get faster turnaround. Will also limit the number of failures to 10, so that if there are many test failing we don't spend too many cycles.

File last commit:

r13387:3b4dba0a
r26165:0c0de25c
Show More
setupegg.py
7 lines | 217 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
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))