File: .travis.yml

package info (click to toggle)
python-click-plugins 1.1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 208 kB
  • sloc: python: 308; makefile: 8
file content (30 lines) | stat: -rw-r--r-- 421 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
sudo: false
dist: xenial

language: python
cache: pip

python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - 3.7

env:
  matrix:
    - CLICK_VERSION=4.1
    - CLICK_VERSION=5.1
    - CLICK_VERSION=6.7
    - CLICK_VERSION=7

install:
  - pip install coveralls
  - pip install -e ".[dev]"
  - pip install "click==${CLICK_VERSION}"

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

after_success:
  - coveralls