-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (47 loc) · 1.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[coverage:run]
omit =
# omit anything in a .venv directory anywhere
*/.venv/*
*/tests/*
*/test/*
# Include everything from the root
source = .
# Also make sure every branch is checked
branch = True
[coverage:report]
# Skip everything that is already 100% covered
skip_covered = True
skip_empty = True
show_missing = True
[tool:pytest]
markers =
idp_settings: marker coupling identity_provider settings input to fixture to use instead of default.
addopts = "--basetemp=/tmp/pytest"
# Speed up finding tests
norecursedirs = *venv* *.venv* *.pytest_cache*
filterwarnings =
ignore::DeprecationWarning:onelogin.*:
ignore::DeprecationWarning:oic.*:
[mypy]
python_version = 3.10
# warn_return_any = True
warn_unused_configs = True
# Per-module options:
[mypy-lxml]
ignore_missing_imports = True
[mypy-uvicorn]
ignore_missing_imports = True
[mypy-OpenSSL.crypto]
ignore_missing_imports = True
[mypy-onelogin.saml2.utils]
ignore_missing_imports = True
[mypy-jwkest.jwk]
ignore_missing_imports = True
[mypy-jwcrypto.jwt]
ignore_missing_imports = True
[mypy-jwcrypto.jwk]
ignore_missing_imports = True
[mypy-jwcrypto.jwe]
ignore_missing_imports = True
[mypy-jwcrypto.jws]
ignore_missing_imports = True