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
The CI pipeline fails on Compliance workflow, because the new pylint version has additional checks which fail. New version pylint 2.10 checks for W1514 which is defined in PEP-0597. pylint is used to check the integration tests. Affected version used is pylint-2.10.2-py3-none-any.whl.
integration/conftest.py:75:34: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
integration/conftest.py:89:34: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
integration/conftest.py:104:34: W1514: Using open without explicitly specifying an encoding (unspecified-encoding)
-----------------------------------
Your code has been rated at 9.87/10
The text was updated successfully, but these errors were encountered:
Use UTF-8 encoding in open() calls to comply with PEP-0597
in the integration tests. This will iron out the W1514
(unspecified-encoding) warnings from pylint in the Compliance
workflow.
Signed-off-by: Marc Lasch <marc.lasch@husqvarnagroup.com>
Use UTF-8 encoding in open() calls to comply with PEP-0597
in the integration tests. This will iron out the W1514
(unspecified-encoding) warnings from pylint in the Compliance
workflow.
Signed-off-by: Marc Lasch <marc.lasch@husqvarnagroup.com>
The CI pipeline fails on Compliance workflow, because the new pylint version has additional checks which fail. New version pylint 2.10 checks for W1514 which is defined in PEP-0597. pylint is used to check the integration tests. Affected version used is
pylint-2.10.2-py3-none-any.whl
.The text was updated successfully, but these errors were encountered: