File: .travis.yml

package info (click to toggle)
python-deprecation 2.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: python: 451; makefile: 15
file content (15 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: python
python:
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7-dev" # 3.7 development branch
  - "pypy"
  - "pypy3"
# command to install dependencies
install: "pip install -r test-requirements.txt"
# command to run tests
script: python -m unittest discover
after_success:
  - coverage run -m unittest discover
  - codecov