File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ MANIFEST
11
11
/eggs
12
12
/bin
13
13
/var
14
+ /venv
14
15
/sdist
15
16
/develop-eggs
16
17
/.installed.cfg
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ disable=
49
49
missing-docstring,
50
50
no-else-raise,
51
51
no-else-return,
52
- unnecessary-pass
52
+ unnecessary-pass,
53
+ use-dict-literal
53
54
54
55
[pylint.reports]
55
56
output-format =parseable
@@ -61,6 +62,9 @@ max-line-length=100
61
62
[pylint.variables]
62
63
dummy-variables-rgx =_|dummy
63
64
65
+ [pylint.basic]
66
+ good-names =i,QUEUED_EVENTS_BATCH_SIZE
67
+
64
68
[pylint.design]
65
69
min-public-methods =0
66
70
max-attributes =15
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def test_get_queued_events(self):
34
34
35
35
# ----------------------------------------------------------------------
36
36
def test_get_queued_events_batch_size (self ):
37
- constants .QUEUED_EVENTS_BATCH_SIZE = 3 # pylint: disable=invalid-name
37
+ constants .QUEUED_EVENTS_BATCH_SIZE = 3
38
38
39
39
cache = MemoryCache ({
40
40
"id1" : {"pending_delete" : True },
Original file line number Diff line number Diff line change @@ -24,9 +24,8 @@ commands =
24
24
{envbindir}/python -m unittest discover --start-directory tests --pattern ' *_test.py'
25
25
26
26
[testenv:docs]
27
- basepython = python3
28
27
deps =
29
28
sphinx
30
29
sphinx_rtd_theme
31
- whitelist_externals = make
30
+ allowlist_externals = make
32
31
commands = make -C docs html BUILDDIR ={envtmpdir} " SPHINXOPTS=-W -E"
You can’t perform that action at this time.
0 commit comments