Skip to content

Commit

Permalink
FIX: Travis-CI test failing
Browse files Browse the repository at this point in the history
TravisCI tests failing due to problem with miniconda install
  • Loading branch information
pseudocubic committed Feb 24, 2016
1 parent 9efb793 commit bdf25b8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: false
sudo: required
language: python
matrix:
include:
Expand All @@ -25,11 +25,12 @@ before_install:
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
install:
- conda create --yes -q -n test_environment python=$TRAVIS_PYTHON_VERSION pip setuptools cython numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION nose matplotlib=$MATPLOTLIB_VERSION six mock h5py
- conda create --yes -q -n test_environment python=$TRAVIS_PYTHON_VERSION nomkl pip setuptools cython numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION nose matplotlib=$MATPLOTLIB_VERSION six mock h5py
- source activate test_environment
- pip install pep8 python-coveralls
- pip install pep8 python-coveralls codecov
- pip install -e . -q --no-deps
script:
- nosetests --with-coverage --cover-package=neutronpy --logging-level=INFO
after_success:
- codecov
- coveralls

0 comments on commit bdf25b8

Please sign in to comment.