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