File: .travis.yml

package info (click to toggle)
python-deprecated 1.2.6-1~bpo10%2B1
  • links: PTS, VCS
  • area: main
  • in suites: buster-backports
  • size: 5,252 kB
  • sloc: python: 1,129; makefile: 34
file content (18 lines) | stat: -rw-r--r-- 417 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
  # Python **2.6** and **3.3** are no more supported
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  # - "3.7"     # Not available yet (Unable to download 3.7 archive).
  - "3.7-dev"   # 3.7 development branch
  - "nightly"   # currently points to 3.7-dev
  # - "pypy"    # some unit tests fail
install:
  - pip install tox-travis
  - pip install coveralls
script:
  tox
after_success:
  coveralls