File: .travis.yml

package info (click to toggle)
python-django-rules 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 280 kB
  • sloc: python: 1,237; makefile: 3; sh: 3
file content (20 lines) | stat: -rw-r--r-- 282 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: false
language: python
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "pypy"
  - "pypy3"

matrix:
  include:
    - {python: "3.6", env: TOXENV=packaging}

install:
  - pip install tox tox-travis tox-venv
  - pip install coveralls
script: tox
after_success:
  - coveralls