File: .travis.yml

package info (click to toggle)
python-exotel 0.1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: python: 178; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.5-dev" # 3.5 development branch
  - "3.6"
  - "3.6-dev" # 3.6 development branch
  - "3.7-dev" # 3.7 development branch
  - "nightly" # currently points to 3.7-dev
# command to install dependencies
install: "pip install -r requirements.txt"
script:
  # TODO: use `tox-travis` to re-use build steps from `tox.ini`.
  - "python setup.py install"
  - "coverage run -m pytest -s -vv tests/"
  - "coverage report --fail-under=100"