Skip to content

Commit

Permalink
updated travis to reflect the fixed version discussed in meeting
Browse files Browse the repository at this point in the history
  • Loading branch information
wkerzendorf committed Mar 11, 2014
1 parent 9f3cc09 commit 8f27304
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ virtualenv:

env:
# try all python versions with the latest stable numpy and astropy
- NUMPY_VERSION=1.7.1 SETUP_CMD='test'
- CYTHON_VERSION=0.20.1 NUMPY_VERSION=1.8.0 PANDAS_VERSION=0.12 ASTROPY_VERSION=0.3 SETUP_CMD='test'


before_install:
Expand All @@ -19,19 +19,18 @@ before_install:
install:
- export PYTHONIOENCODING=UTF8 # just in case
#- pip install --upgrade "numpy==$NUMPY_VERSION" --use-mirrors
- pip install -q --upgrade Cython --use-mirrors
- pip install -q --upgrade "pandas==0.12" --use-mirrors


#- pip install --upgrade scipy --use-mirrors
- pip install -q astropy --use-mirrors
- pip install -q coveralls --use-mirrors
- pip install -q pytest --use-mirrors
- pip install -q pytest-cov --use-mirrors
#- pip -q install --upgrade h5py --use-mirrors
- pip install -q --upgrade "Cython==$CYTHON_VERSION$"
- pip install -q --upgrade "pandas==$PANDAS_VERSION"
- pip install -q "astropy==$ASTROPY_VERSION"
- pip install -q coveralls
- pip install -q pytest
- pip install -q pytest-cov
#building inplace
- python setup.py build_ext --inplace

script:
python setup.py test --coverage --skip-docs
- coverage run --source=tardis -m py.test
# introduce when astropy >= 0.3.1 is out python setup.py test --coverage --skip-docs

after_success:
coveralls

0 comments on commit 8f27304

Please sign in to comment.