Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eng/pylintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[MASTER]
py-version=3.8
ignore-patterns=test_*,conftest,setup
reports=no

Expand Down
2 changes: 1 addition & 1 deletion eng/tox/run_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
logging.error(
"{} exited with linting error {}. Please see this link for more information https://aka.ms/azsdk/python/pylint-guide".format(pkg_details.name, e.returncode)
)
if args.next and in_ci() and is_check_enabled(args.target_package, "pylint"):
if args.next and in_ci():
from gh_tools.vnext_issue_creator import create_vnext_issue
create_vnext_issue(pkg_details.name, "pylint")

Expand Down
2 changes: 0 additions & 2 deletions eng/tox/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ commands =

[testenv:pylint]
description=Lints a package with pylint (version {[testenv:pylint]pylint_version})
basepython = python38
pylint_version=2.15.8
skipsdist = true
skip_install = true
Expand All @@ -102,7 +101,6 @@ commands =

[testenv:next-pylint]
description=Lints a package with pylint (version {[testenv:next-pylint]pylint_version})
basepython = python38
pylint_version=3.0.3
skipsdist = true
skip_install = true
Expand Down
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[MASTER]
py-version=3.8
ignore-patterns=test_*,conftest,setup
reports=no

Expand Down