forked from fake-useragent/fake-useragent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
83 lines (70 loc) · 1.01 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tox]
envlist =
flake8,
frosted,
isort,
py25,
py26,
py27,
py32,
py33,
py34,
pypy,
jython
[base]
deps =
nose
coverage
[testenv:flake8]
basepython=python
deps =
flake8
commands =
flake8 --show-source fake_useragent
[testenv:frosted]
basepython=python
deps =
frosted
commands =
frosted -r fake_useragent
[testenv:isort]
basepython=python
deps =
isort
commands =
isort --check-only -rc fake_useragent --diff
[testenv]
commands =
{envpython} setup.py nosetests --with-coverage
[testenv:py25]
basepython=python2.5
deps =
{[base]deps}
[testenv:py26]
basepython=python2.6
deps =
{[base]deps}
[testenv:py27]
basepython=python2.7
deps =
{[base]deps}
[testenv:py32]
basepython=python3.2
deps =
{[base]deps}
[testenv:py33]
basepython=python3.3
deps =
{[base]deps}
[testenv:py34]
basepython=python3.4
deps =
{[base]deps}
[testenv:pypy]
basepython=pypy
deps =
{[base]deps}
[testenv:jython]
basepython=jython
deps =
{[base]deps}