You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, thank you for this package! I have a small feature request - we add --pylint to our setup.cfg file so that it is always run alongside our tests:
[tool:pytest]
addopts = -p no:cacheprovider -n auto --junitxml /tmp/unit_results.xml --pylint
This works fine, but I find myself wishing to just run our tests locally without the linting (which is a bit faster).
I'd love the ability to run pytest --no-pylint and have it override the auto-included --pylint flag, so that pytest --pylint --no-pylint will not run pylint.
The text was updated successfully, but these errors were encountered:
Hey, thank you for this package! I have a small feature request - we add
--pylint
to oursetup.cfg
file so that it is always run alongside our tests:This works fine, but I find myself wishing to just run our tests locally without the linting (which is a bit faster).
I'd love the ability to run
pytest --no-pylint
and have it override the auto-included--pylint
flag, so thatpytest --pylint --no-pylint
will not run pylint.The text was updated successfully, but these errors were encountered: