forked from amazon-archives/pipeformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (48 loc) · 1.03 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
sudo: true
dist: xenial
language: python
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
# CPython 3.6
- python: 3.6
env: TOXENV=py36-local
stage: Client Tests
# we don't have any yet
#- python: 3.6
# env: TOXENV=py36-integ
# stage: Client Tests
# we don't have any yet
#- python: 3.6
# env: TOXENV=py36-examples
# stage: Client Tests
# CPython 3.7
- python: 3.7
env: TOXENV=py37-local
stage: Client Tests
# we don't have any yet
#- python: 3.7
# env: TOXENV=py37-integ
# stage: Client Tests
# we don't have any yet
#- python: 3.7
# env: TOXENV=py37-examples
# stage: Client Tests
# Security
- python: 3.7
env: TOXENV=bandit
stage: Static Checks
# Linting
# disable for now
#- python: 3.7
# env: TOXENV=lint
# stage: Static Checks
# MyPy
# disable for now
#- python: 3.7
# env: TOXENV=mypy-py3
# stage: Static Checks
install: pip install tox
script: tox -- -vv