File: .travis.yml

package info (click to toggle)
python-pilight 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: python: 398; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python

python:
  - 2.7
  - 3.5
  - pypy

sudo: false

install:
  - pip install coverage coveralls  # coverage testing
  - pip install .

# Run test
script: nosetests --with-coverage --cover-package=pilight

after_success:
- coveralls