aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 243ce2a9a81a6e8737778dc5bed010d45c7ac603 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
python:
  - 2.7
  - 3.2
  - 3.3
  - "pypy"
matrix:
  allow_failures:
    - python: 3.2
    - python: 3.3
notifications:
  email: false
env:
  - DEPS=false
  - DEPS=true
install:
  - "pip install nose nose-cov --use-mirrors"
  - "make gpgkey"
  - "DESTDIR=. make install"
script:
  - "make test"