File: .travis.yml

package info (click to toggle)
python-logutils 0.3.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 404 kB
  • sloc: python: 1,942; makefile: 79
file content (17 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
sudo: false
python:
    - "2.6"
    - "2.7"
#    - "3.2" removed because Coveralls/coverage 4.0 fails on 3.2
    - "3.3"
    - "3.4"
    - "3.5"
    - "3.6"
    - "pypy"
install:
    - pip install coveralls
script:
    - "python setup.py test"
    - "coverage run setup.py test"
after_success: coveralls