summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c73bd8f4f7e877c1ab2942a59ffc519f9f6d5590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "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"
# command to install dependencies
install:
  - pip install .
  - pip install -r requirements.txt
# command to run tests
script: pytest