forked from SkyLothar/certbot-dns-dnspod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
35 lines (27 loc) · 772 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
[tox]
envlist = py27, py35, flake8, lama
skipsdist = True
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps = -rrequirements.txt
-rtests/requirements.txt
[testenv:py27]
commands = py.test --cov=certbot_dns_dnspod --cov-report html --cov-report term tests
[testenv:py34]
commands = py.test --cov=certbot_dns_dnspod --cov-report html --cov-report term tests
[testenv:flake8]
deps = -rtests/requirements.txt
commands = flake8 certbot_dns_dnspod tests
[testenv:lama]
commands = pylama certbot_dns_dnspod
[pylama]
skip = */.tox/*,*/.env/*,*/.ropeproject/*
linters = pylint,mccabe
;ignore C0111[doc-string] C1001[old-style calss]
ignore=C0111,C1001
[pylint]
ignored-classes= responses
[flake8]
ignore = H102,H304,H803
exclude = .tox,.git,*.egg,build,.ropeproject