forked from dowjones/hammer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
executable file
·30 lines (27 loc) · 1 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
[tox]
envlist = py36
skipsdist = true
[testenv]
deps = -rrequirements.txt
commands =
pyflakes tests \
hammer/library \
hammer/identification \
hammer/reporting-remediation
pytest -v -p no:cacheprovider --capture=no --junitxml=tests/results/pytest.xml
[pytest]
junit_suite_name = aws-integration-tests
python_paths =
hammer/identification/lambdas
hammer/identification/lambdas/iam-user-inactive-keys-identification
hammer/identification/lambdas/iam-keyrotation-issues-identification
hammer/identification/lambdas/sg-issues-identification
hammer/identification/lambdas/s3-acl-issues-identification
hammer/identification/lambdas/s3-policy-issues-identification
hammer/identification/lambdas/ebs-unencrypted-volume-identification
hammer/identification/lambdas/ebs-public-snapshots-identification
hammer/identification/lambdas/sqs-public-policy-identification
hammer
[flake8]
max-line-length = 140
exclude = .git, __pycache__, .tox, venv/