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

python:
  - 2.6
  - 2.7
  - 3.2
  - pypy

matrix:
  allow_failures:
    - python: 3.2  # Not a new enough 3.2 for blessings
    - python: pypy  # PyPy doesn't have _curses.

script:
  - pip install -q --use-mirrors nose
  - python setup.py install
  - nosetests -w /tmp blessings.tests