• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: python
2python:
3  - 2.6
4  - 2.7
5  - 3.2
6  - 3.3
7  - pypy
8install:
9  - pip install -r requirements/development.txt -r requirements/production.txt
10  - python setup.py install
11script:
12  - coverage run setup.py test
13  - coverage report --show-missing
14after_success:
15  - coveralls
16notifications:
17    email: aaron.iles+travis-ci@gmail.com
18