summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8acffbbe3358d3ba9344764d7e2c7693da109883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
python:

  - "2.7"
  - "3.3"
  - "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:
  - sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran
# command to install dependencies
install:
  - pip install -r requirements.txt
  - python setup.py install
# command to run tests
script: pytest -t test