File: .travis.yml

package info (click to toggle)
python-click-plugins 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 192 kB
  • sloc: python: 285; makefile: 8
file content (24 lines) | stat: -rw-r--r-- 297 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python

sudo: false
cache:
  directories:
    - ~/.cache/pip

python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - pypy
  - pypy3

install:
  - pip install coveralls
  - pip install -e .\[dev\]

script:
  - pytest tests --cov click_plugins --cov-report term-missing

after_success:
  - coveralls