-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
39 lines (38 loc) · 977 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
34
35
36
37
38
39
language: python
matrix:
include:
- python: 2.7
stage: style
name: "py2_pycodestyle"
script: pycodestyle productionsystem
- python: 2.7
stage: style
name: "py2_pydocstyle"
script: pydocstyle productionsystem
- python: 2.7
stage: style
name: "py2_pylint"
script: pylint --disable=W,C,R productionsystem
- python: 3.6
stage: style
name: "py3_pycodestyle"
script: pycodestyle productionsystem
- python: 3.6
stage: style
name: "py3_pydocstyle"
script: pydocstyle productionsystem
- python: 3.6
stage: style
name: "py3_pylint"
script: pylint --disable=W,C,R productionsystem
- python: 2.7
stage: test
script: pytest
- python: 3.6
stage: test
script: pytest
git:
depth: 3
install:
- pip install --upgrade --upgrade-strategy eager pip setuptools wheel
- pip install --upgrade --upgrade-strategy eager -e .[dev]