forked from WildMeOrg/houston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (78 loc) · 3.89 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[flake8]
# This section configures `flake8`, the python linting utility.
# See also https://flake8.pycqa.org/en/latest/user/configuration.html
ignore = D100,D101,D102,D103,D105,D200,D205,D210,D400,D401,D403,E127,E201,E202,E203,E221,E222,E241,E265,E271,E272,E301,E501,N802,N803,N805,N806,W503
# D100 - Missing docstring in public module
# D101 - Missing docstring in public class
# D102 - Missing docstring in public method
# D103 - Missing docstring in public function
# D105 - Missing docstring in public package
# D200 - One-line docstring should fit on one line with quotes
# D205 - 1 blank line required between summary line and description
# D210 - No whitespaces allowed surrounding docstring text
# D400 - First line should end with a period
# D401 - First line should be in imperative mood
# D403 - First word of the first line should be properly capitalized
# D* codes come from pydocstyle which is integrated into flake8 via flake8-docstring.
# See also http://www.pydocstyle.org/en/5.0.1/error_codes.html
# E127 - continuation line over-indented for visual indent
# E201 - whitespace after ‘(‘
# E202 - whitespace before ‘)’
# E203 - whitespace before ‘:’
# E221 - multiple spaces before operator
# E222 - multiple spaces after operator
# E241 - multiple spaces after ‘,’
# E265 - block comment should start with ‘# ‘
# E271 - multiple spaces after keyword
# E272 - multiple spaces before keyword
# E301 - expected 1 blank line, found 0
# E501 - line too long (82 > 79 characters)
# E* codes come from pycodestyle which is integrated with flake8
# See also https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
# N802 - function name should be lowercase
# N803 - argument name should be lowercase
# N805 - first argument of a method should be named 'self'
# N806 - variable in function should be lowercase
# N* codes come from pep8-naming, which integrates with flake8
# See also https://github.com/PyCQA/pep8-naming#error-codes
# Exclude the git directory and virtualenv directory (as `.env`)
exclude = .git,.env,migrations
[tool:brunette]
line-length = 90
verbose = false
skip-string-normalization = true
single-quotes = true
[tool:isort]
profile = black
line_length = 90
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool:pytest]
minversion = 5.4
addopts = -v -p no:doctest --xdoctest --xdoctest-style=google --random-order --random-order-bucket=global --cov=./ --cov-report html -m "not separate" --durations=0 --durations-min=3.0 --color=yes --code-highlight=yes --show-capture=log -ra
testpaths =
app
tests
markers =
separate: a test that should not be run with other tests
only_for_codex: a test that only runs with Codex
only_for_mws: a test that only runs with MWS
requires_local_gitlab: a test that requires local gitlab
filterwarnings =
default
ignore:.*No cfgstr given in Cacher constructor or call.*:Warning
ignore:.*Define the __nice__ method for.*:Warning
ignore:.*Only explicitly-declared fields will be included in the Schema Object.*:UserWarning
ignore:.*Using or importing the ABCs from 'collections' instead of from 'collections.abc'.*:DeprecationWarning
ignore:.*inspect.getargspec.*:DeprecationWarning
ignore:`np.typeDict` is a deprecated.*:DeprecationWarning
ignore:.*the imp module is deprecated in favour of importlib.*:DeprecationWarning
ignore:The _yaml extension module is now located at yaml._yaml and its location is subject to change.*:DeprecationWarning
ignore:.*Elasticsearch built-in security features are not enabled.*:Warning
ignore:.*argument to XDoctestModule is deprecated.*:Warning
ignore:.*operation is not currently supported within the execution stage of the flush process.*:Warning
ignore:.*"localhost" is not a valid cookie domain.*:UserWarning
ignore:.*IPython parent '/nonexistent' is not a writable location.*:UserWarning