File: .travis.yml

package info (click to toggle)
python-cligj 0.7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: python: 528; makefile: 4
file content (19 lines) | stat: -rwxr-xr-x 322 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
sudo: false
language: python
python:
  - "3.6"
  - "3.7"
  - "3.8"
install:
  - "pip install coveralls"
  - "pip install -e .[test]"
script: 
  - py.test --cov cligj --cov-report term-missing
after_success:
  - coveralls
deploy:
  on:
    tags: true
  provider: pypi
  distributions: "sdist bdist_wheel"
  user: __token__