Skip to content

Commit ccaff6c

Browse files
author
Michael Davis
committed
revert tox.ini and .travis.yml
1 parent 1c7691b commit ccaff6c

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
sudo: false
21
# Travis infra requires pinning dist:precise, at least as of 2017-09-01
32
# detail: https://blog.travis-ci.com/2017-06-21-trusty-updates-2017-Q2-launch
4-
dist: trusty
3+
dist: precise
54
language: python
65
python:
7-
- "2.6"
86
- "2.7"
9-
- "3.3"
107
- "3.4"
118
- "3.5"
129
- "3.6"
1310
- "pypy-5.3.1"
1411
install:
15-
- pip install -U setuptools && pip install -U tox codecov tox-travis
12+
- pip install -U tox codecov tox-travis
1613
script:
1714
- tox
1815
after_success:
19-
- codecov
16+
- codecov
17+
matrix:
18+
include:
19+
- python: 3.6
20+
env:
21+
- TOX_ENV=flake8
22+
script: tox -e $TOX_ENV

tox.ini

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
2-
envlist = py{27,33,34,35,36,37,py,pypy}
2+
envlist = py{27,34,35,36,py},flake8
3+
skip_missing_interpreters = True
34

45
[testenv]
56
commands =
@@ -12,5 +13,9 @@ deps =
1213
pytest-cov
1314
pytest-runner
1415
cryptography
15-
enum34
16-
six
16+
17+
[testenv:flake8]
18+
commands = flake8 jose
19+
skip_install= True
20+
deps =
21+
flake8

0 commit comments

Comments
 (0)