Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test/scripts: pylint: disable=too-many-positional-arguments #1008

Merged
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
2 changes: 1 addition & 1 deletion test/scripts/boot-image
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def ensure_uncompressed(filepath):


def cmd_boot_aws(arch, image_name, privkey, pubkey, image_path, script_cmd):
# pylint: disable=too-many-arguments
# pylint: disable=too-many-arguments,too-many-positional-arguments
aws_config = get_aws_config()
cmd = ["go", "run", "./cmd/boot-aws", "run",
"--access-key-id", aws_config["key_id"],
Expand Down
2 changes: 1 addition & 1 deletion test/scripts/imgtestlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def check_config_names():

def gen_manifests(outputdir, config_map=None, distros=None, arches=None, images=None,
commits=False, skip_no_config=False):
# pylint: disable=too-many-arguments
# pylint: disable=too-many-arguments,too-many-positional-arguments
cmd = ["go", "run", "./cmd/gen-manifests",
"--cache", os.path.join(TEST_CACHE_ROOT, "rpmmd"),
"--output", outputdir,
Expand Down
Loading