forked from lokureddy/check-reserved-instances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
49 lines (46 loc) · 816 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
38
39
40
41
42
43
44
45
46
47
48
49
[tox]
envlist = py27, py33, py34, py35, flake8
deps =
-rrequirements.txt
-rtest_requirements.txt
[testenv]
deps =
{[tox]deps}
commands =
py.test -v -s --junitxml test_results.xml \
--cov-config={toxinidir}/.coveragerc \
--cov={envsitepackagesdir}/check_reserved_instances \
--cov-report=html \
--cov-report=term-missing \
tests/
[testenv:flake8]
skip_install = True
deps =
flake8
flake8-docstrings
flake8-quotes
flake8-import-order
flake8-commas
flake8-comprehensions
flake8-future-import
commands =
flake8 src/
[flake8]
exclude =
.git,
__pycache__,
build,
dist
ignore =
FI10,
FI12,
FI13,
FI14,
FI15,
FI16,
FI17,
FI51,
FI53,
max-complexity = 15
import-order-style = google
application-import-names = check_reserved_instances