Skip to content

Commit

Permalink
fix-pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
nagworld9 committed Jul 20, 2023
1 parent ec79f0b commit 1b10319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests_e2e/orchestrator/runbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ variable:
#
# The test suites to execute
- name: test_suites
value: "agent_bvt, no_outbound_connections, extensions_disabled, agent_not_provisioned, fips, agent_ext_workflow, agent_cgroups, ext_cgroups"
value: "agent_bvt, no_outbound_connections, extensions_disabled, agent_not_provisioned, fips, agent_ext_workflow, agent_update, agent_cgroups, ext_cgroups"
- name: cloud
value: "AzureCloud"
is_case_visible: true
Expand Down
2 changes: 1 addition & 1 deletion tests_e2e/tests/lib/cgroup_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def exit_if_cgroups_not_supported():
base_cgroup_fs_exists = os.path.exists(BASE_CGROUP)

if not base_cgroup_fs_exists:
raise Exception("\tDistro %s-%s does not support cgroups -- exiting", DISTRO_NAME, DISTRO_VERSION)
raise Exception("\tDistro %s-%s does not support cgroups -- exiting".format(DISTRO_NAME, DISTRO_VERSION))
else:
log.info('\tDistro %s-%s supports cgroups\n', DISTRO_NAME, DISTRO_VERSION)

Expand Down

0 comments on commit 1b10319

Please sign in to comment.