language: python os: - linux - osx python: - "2.7" - "3.4" # does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa # maintainers to fix their pypy-dev package. # - "pypy" before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get update -q ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev; fi #gfortran - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python; fi # command to install dependencies install: - pip install -r requirements.txt - python setup.py install # command to run tests script: python test/test_load_module.py -v