forked from contentful/contentful.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
37 lines (34 loc) · 1012 Bytes
/
tox.ini
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
[tox]
envlist = {py27,py34,py35,py36,pypy,pypy3}-{flakes,requests27,requests26,requests25,requests24,requests23,requests22,requests1,httplib2,urllib317,urllib319,urllib3110}
[testenv:flakes]
skipsdist = True
commands =
flake8 --version
flake8 --exclude=./docs/conf.py,./.tox/
pyflakes ./docs/conf.py
deps = flake8
[testenv]
commands =
python runtests.py
deps =
PyYAML
python-dateutil
vcrpy
requests-mock
requests1: requests==1.2.3
requests27: requests==2.7.0
requests26: requests==2.6.0
requests25: requests==2.5.0
requests24: requests==2.4.0
requests23: requests==2.3.0
requests22: requests==2.2.1
urllib317: urllib3==1.7.1
urllib319: urllib3==1.9.1
urllib3110: urllib3==1.10.2
[flake8]
; Usual line length should be kept to 80,
; but there's a lot of docs that cannot be reduced
; in length and individual `noqa` tags can't be added
; due to sphinx rendering them, hence limit is set here
; to be extremely high.
max_line_length = 180