forked from aws-samples/aws-lambda-ddns-function
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
63 lines (57 loc) · 1.04 KB
/
Copy pathtox.ini
File metadata and controls
63 lines (57 loc) · 1.04 KB
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
[tox]
envlist =
py{37}
coverage-report
skip_missing_interpreters = true
skipsdist=true
[testenv]
passenv = LANG
deps =
tox==3.7.0
pytest==4.3.0
coverage==4.5.3
mock==2.0.0
boto3==1.9.111
moto
wheel
setuptools
freezegun
sure
commands = coverage run -p -m pytest --ignore union.py -vv {posargs}
[testenv:coverage-report]
deps = coverage
skip_install = true
commands =
coverage combine
coverage report --omit=*/__init__.py,*site-packages*,tests/*,*/site.py
coverage html
[testenv:codecov]
deps = codecov
skip_install = true
commands =
coverage combine
coverage report --omit=*/__init__.py,*site-packages*,tests/*,*/site.py
codecov
[coverage:report]
skip_covered = True
show_missing = True
exclude_lines =
pragma: no cover
omit =
requirements-dev.txt
tox.ini
images/
__pycache__/
__pycache__/*
ddns.template
ddns-pol.json
LICENSE
README.md
*.pyc
.pytest_cache
.tox
tests/
tests/*
.coverage.*
.coverage
testdebug.log