mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
disable unpacking-non-sequence pylint rule
This commit is contained in:
parent
a34d42b276
commit
bf40680835
1 changed files with 4 additions and 1 deletions
|
@ -67,5 +67,8 @@ def test_issue_64169(caplog):
|
|||
|
||||
# Confirm that the state continued to install the package as expected.
|
||||
# Only check the 'pkgs' parameter of pip.install
|
||||
mock_install_call_args, mock_install_call_kwargs = mock_pip_install.call_args
|
||||
(
|
||||
mock_install_call_args,
|
||||
mock_install_call_kwargs,
|
||||
) = mock_pip_install.call_args # pylint: disable=unpacking-non-sequence
|
||||
assert mock_install_call_kwargs["pkgs"] == pkg_to_install
|
||||
|
|
Loading…
Add table
Reference in a new issue