summaryrefslogtreecommitdiff
path: root/testenv/tox.ini
diff options
context:
space:
mode:
authorAdam Outler <[email protected]>2023-04-13 15:56:37 -0400
committerGitHub <[email protected]>2023-04-13 22:56:37 +0300
commit59ba330ef886726661957e9c47503ad76e42dfc3 (patch)
treeb3894957e9b21f940e61f8aa40f4b46adc963124 /testenv/tox.ini
parentdb208ad456f7657a7dafdb73c1b7c7bfcf6e541f (diff)
Remove unused items (#128)
* Remove unused items These items are called out as inactive or removed from pylint. * Allow inspection of additional packages By adding these package inspections, the pylint warnings are reduced. This brings us to a smaller list of items which do not comply with current PEPs. https://hackedyour.info/58KO86fiiL4wiV5r * Lint problems discussed with lead * Add comma to end of line
Diffstat (limited to 'testenv/tox.ini')
-rw-r--r--testenv/tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/testenv/tox.ini b/testenv/tox.ini
index 8a36ad42..77f8521a 100644
--- a/testenv/tox.ini
+++ b/testenv/tox.ini
@@ -17,9 +17,8 @@ deps =
[testenv:pylint]
whitelist_externals = bash
-commands = bash -c 'pylint -j2 --rcfile=testenv/linters/pylint.ini --output-format=colorized --reports=no kvmd testenv/tests *.py'
+commands = bash -c 'pylint -j0 --rcfile=testenv/linters/pylint.ini --output-format=colorized --reports=no kvmd testenv/tests *.py'
deps =
- astroid==2.7.3
pylint
pytest
pytest-asyncio