Skip to content

Commit 2b6fa71

Browse files
committed
-
1 parent a326ae8 commit 2b6fa71

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.travis.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
dist: xenial
2+
language: python
3+
4+
python:
5+
- 2.7
6+
- 3.4
7+
- 3.5
8+
- 3.6
9+
- 3.7
10+
- 3.8-dev
11+
- pypy2.7-6.0
12+
- pypy3.5
13+
14+
install:
15+
- pip install tox-travis
16+
script:
17+
- tox
18+
19+
stages:
20+
- lint
21+
- test
22+
#- deploy
23+
24+
matrix:
25+
allow_failures:
26+
- env: TOXENV=flake8
27+
- env: TOXENV=pylint
28+
- env: TOXENV=bandit
29+
30+
jobs:
31+
include:
32+
#- { stage: lint, python: 3.7, env: TOXENV=flake8 }
33+
#- { stage: lint, python: 3.7, env: TOXENV=pylint }
34+
#- { stage: lint, python: 3.7, env: TOXENV=bandit }
35+
- { stage: lint, python: 3.7, env: TOXENV=readme }
36+
37+
#- stage: deploy
38+
# install: skip
39+
# script: skip
40+
# deploy:
41+
# provider: pypi
42+
# distributions: sdist bdist_wheel
43+
# user: cool-RR
44+
# password:
45+
# secure: <your-pypi-password-here-encrypted-using-the-travis-cli>
46+
# on:
47+
# tags: true

0 commit comments

Comments
 (0)