forked from a-luna/fastapi-redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (39 loc) · 624 Bytes
/
setup.cfg
File metadata and controls
40 lines (39 loc) · 624 Bytes
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
[tool:pytest]
addopts =
# generate report with details of all (non-pass) test results
-ra
# show local variables in tracebacks
--showlocals
# report linting issues with flake8
--flake8
# collect code coverage metrics
--cov fastapi_redis_cache
# verbose output
--verbose
# clear cache before each run
--cache-clear
norecursedirs =
.git
.pytest_cache
.vscode
venv
build
dist
custom_scripts
[flake8]
max-line-length = 120
select =
B,
C,
E,
F,
W,
T4,
B9
ignore =
E203,
E231,
E266,
E501,
FS003,
W503