File: .travis.yml

package info (click to toggle)
python-onewire 0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: python: 121; ansic: 73; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: python
python:
  - "2.7"
  - "3.4"
  - "3.5"
before_install:
  - sudo apt-get -qq update
  - sudo apt-get install -y libow-dev
install:
  - pip install --upgrade pytest pytest-mock pytest-cov coveralls
  - pip install -e .
script:
  - pytest --cov-config .coveragerc --cov=onewire
after_success:
  - coveralls