forked from PyCQA/pydocstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (32 loc) · 795 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Travis (http://travis-ci.org/) is a continuous integration
# service for open source projects. This file configures
# Travis to install and run "tox" test runner, which is
# configured in tox.ini file.
sudo: false
language: python
install: pip install tox
script: tox
matrix:
include:
- python: 3.4
env: TOXENV=py34-tests
- python: 3.5
env: TOXENV=py35-tests
- python: 3.6
env: TOXENV=py36-tests
- python: 3.7
dist: xenial
sudo: required
env: TOXENV=py37-tests
- python: 3.4
env: TOXENV=py34-install
- python: 3.5
env: TOXENV=py35-install
- python: 3.6
env: TOXENV=py36-install
- python: 3.7
dist: xenial
sudo: required
env: TOXENV=py37-install
- python: 3.6
env: TOXENV=docs