forked from yehoshuadimarsky/bcpandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (30 loc) · 818 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
35
[flake8]
ignore =
W291, # trailing whitespace
E501, # line too long
W293, # blank line containes whitespace
E203, # space before : (needed for how black formats slicing)
W503, # line break before binary operator
W504, # line break after binary operator
exclude =
build
[tool:pytest]
addopts = --showlocals --tb=short --strict-markers -v --cov=bcpandas --cov-report html --hypothesis-show-statistics
minversion = 4.6
[mypy]
ignore_missing_imports=True
pretty=True
show_error_codes=True
# To be kept consistent with Black configs
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True
line_length = 100
force_sort_within_sections = True
[coverage:run]
omit =
# omit everything tests
bcpandas/tests/*
benchmarks/**