Home | History | Annotate | Download | only in funcsigs
      1 language: python
      2 python:
      3   - 2.6
      4   - 2.7
      5   - 3.2
      6   - 3.3
      7   - pypy
      8 install:
      9   - pip install -r requirements/development.txt -r requirements/production.txt
     10   - python setup.py install
     11 script:
     12   - coverage run setup.py test
     13   - coverage report --show-missing
     14 after_success:
     15   - coveralls
     16 notifications:
     17     email: aaron.iles+travis-ci (a] gmail.com
     18