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
1111/eggs
1212/bin
1313/var
14+ /venv
1415/sdist
1516/develop-eggs
1617/.installed.cfg
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ disable=
4949 missing-docstring,
5050 no-else-raise,
5151 no-else-return,
52- unnecessary-pass
52+ unnecessary-pass,
53+ use-dict-literal
5354
5455[pylint.reports]
5556output-format =parseable
@@ -61,6 +62,9 @@ max-line-length=100
6162[pylint.variables]
6263dummy-variables-rgx =_|dummy
6364
65+ [pylint.basic]
66+ good-names =i,QUEUED_EVENTS_BATCH_SIZE
67+
6468[pylint.design]
6569min-public-methods =0
6670max-attributes =15
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def test_get_queued_events(self):
3434
3535 # ----------------------------------------------------------------------
3636 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
3838
3939 cache = MemoryCache ({
4040 "id1" : {"pending_delete" : True },
Original file line number Diff line number Diff line change @@ -24,9 +24,8 @@ commands =
2424 {envbindir}/python -m unittest discover --start-directory tests --pattern ' *_test.py'
2525
2626[testenv:docs]
27- basepython = python3
2827deps =
2928 sphinx
3029 sphinx_rtd_theme
31- whitelist_externals = make
30+ allowlist_externals = make
3231commands = make -C docs html BUILDDIR ={envtmpdir} " SPHINXOPTS=-W -E"
You can’t perform that action at this time.
0 commit comments