forked from openwallet-foundation/acapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (39 loc) · 1.09 KB
/
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
35
36
37
38
39
40
41
42
43
[tool:pytest]
testpaths = aries_cloudagent
addopts =
--quiet --junitxml=./test-reports/junit.xml
--cov-config .coveragerc --cov=aries_cloudagent --cov-report term --cov-report xml
--flake8
markers =
askar: Tests specifically relating to Aries-Askar support
indy: Tests specifically relating to Hyperledger Indy SDK support
indy_credx: Tests specifically relating to Indy-Credx support
indy_vdr: Tests specifically relating to Indy-VDR support
ursa_bbs_signatures: Tests specificaly relating to BBS Signatures support
postgres: Tests relating to the postgres storage plugin for Indy
junit_family = xunit1
asyncio_mode = auto
[flake8]
# https://github.com/ambv/black#line-length
max-line-length = 90
exclude =
*/tests/**
extend_ignore = D202, W503
per_file_ignores = */__init__.py:D104
[coverage:run]
omit =
*/tests/*
demo/*
docker/*
docs/*
scripts/*
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