forked from uberfastman/yfpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (30 loc) · 701 Bytes
/
setup.cfg
File metadata and controls
32 lines (30 loc) · 701 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
[metadata]
description_file = README.md
[flake8]
ignore =
# 1 blank line required before class docstring
D203,
# line break occurred before a binary operator
W503
per-file-ignores =
# imported but unused
__init__.py: F401
data.py: F401
# add to PYTHONPATH before imports
quickstart.py: E402
exclude =
__pycache__,
.git,
.github,
.idea,
.pytest_cache,
build,
dist,
yfpy.egg-info,
test/test_output
max-complexity = 15
max-line-length = 120
[tool:pytest]
markers =
unit: tests that are self-contained without any external interactions,
integration: tests that require interaction with external components (such as an API)