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
Hi,
I'm trying to run pylama in mine cicd, the issue is that at some point in my workspace exists a venv in repository folder, probably created by other steps, the folder is .pyenv-usr-local-bin-python3.10 so I thought to setup a pylama.ini in order to skip that folder completely.
but for example pylint and isort for sure are still scanning that folder:
ERROR: /home/jenkins/workspace/zation_folder_travellint_develop/.pyenv-usr-local-bin-python3.10/lib/python3.10/site-packages/setuptools/_vendor/jaraco/functools.py Imports are incorrectly sorted and/or formatted.
pylint: Command line or configuration file:1: UserWarning: 'BaseException' is not a proper value for the 'overgeneral-exceptions' option. Use fully qualified name (maybe 'builtins.BaseException' ?) instead. This will cease to be checked at runtime when the configuration upgrader is released.
pylint: Command line or configuration file:1: UserWarning: 'Exception' is not a proper value for the 'overgeneral-exceptions' option. Use fully qualified name (maybe 'builtins.Exception' ?) instead. This will cease to be checked at runtime when the configuration upgrader is released.
Probably I misunderstood the way I should configure pylama to ignore completely folders.
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to run pylama in mine cicd, the issue is that at some point in my workspace exists a venv in repository folder, probably created by other steps, the folder is
.pyenv-usr-local-bin-python3.10
so I thought to setup a pylama.ini in order to skip that folder completely.I wrote this:
but for example pylint and isort for sure are still scanning that folder:
Probably I misunderstood the way I should configure pylama to ignore completely folders.
The text was updated successfully, but these errors were encountered: