forked from bcgov/aries-acapy-plugin-redis-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
34 lines (30 loc) · 769 Bytes
/
setup.cfg
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
[flake8]
# https://github.com/ambv/black#line-length
max-line-length = 90
exclude =
*/tests/**
extend_ignore = D202, W503
per_file_ignores = */__init__.py:D104
[tool:pytest]
testpaths = redis_queue redis_relay redis_deliverer
addopts =
--quiet --junitxml=./test-reports/junit.xml
--cov-config .coveragerc --cov=redis_queue --cov=redis_relay --cov=redis_deliverer --cov-report term --cov-report xml
--flake8
junit_family = xunit1
asyncio_mode = auto
[coverage:run]
omit =
*/tests/*
docker/*
docs/*
data_file = test-reports/.coverage
[coverage:report]
exclude_lines =
pragma: no cover
@abstract
precision = 2
skip_covered = True
show_missing = True
[coverage:xml]
output = test-reports/coverage.xml