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

python:
  - 2.5
  - 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