Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: travis.yml change language to python #1503

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# Adapted from M. Brett's .yaml file for nipy:
# https://github.com/nipy/nipy/blob/master/.travis.yml
#
# We pretend to be erlang because we can't use the python support in
# travis-ci; it uses virtualenvs, they do not have numpy, scipy, matplotlib,
# and it is impractical to build them
language: erlang
language: python
notifications:
email:
- statsmodels-commits@googlegroups.com
Expand Down Expand Up @@ -54,4 +51,4 @@ script:
- echo 'import statsmodels as sm; a=sm.test(); import sys; sys.exit((len(a.failures)+len(a.errors))>0)' > test.py
- if [ "${PYSUF}" != "3" ]; then coverage run --rcfile=${SRCDIR}/.travis_coveragerc test.py; else $PYTHON test.py; fi
after_success:
- if [ "${PYSUF}" != "3" ]; then coveralls; fi
- if [ "${PYSUF}" != "3" ]; then coveralls --rcfile=${SRCDIR}/.travis_coveragerc; fi
3 changes: 2 additions & 1 deletion .travis_coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

[run]
branch = True
source = statsmodels
include =
/usr/local/lib/python*/*-packages/statsmodels*
*/statsmodels/*