Merge "Bump hacking version"

This commit is contained in:
Zuul 2023-11-01 20:04:11 +00:00 committed by Gerrit Code Review
commit 9836fa7e6c
3 changed files with 3 additions and 3 deletions

View File

@ -118,7 +118,7 @@ class TestCase(unittest.TestCase):
)
exp = "The environment name 'kayobe' is reserved for internal use."
log_found = any(exp in t for t in ctx.output)
assert(log_found)
assert log_found
@mock.patch.object(ansible, "_get_vars_files")
@mock.patch.object(utils, "is_readable_dir")

View File

@ -261,7 +261,7 @@ def intersect_limits(args_limit, cli_limit):
separator = ',&'
else:
separator = ':&'
limits = [l for l in [args_limit, cli_limit] if l]
limits = [limit for limit in [args_limit, cli_limit] if limit]
return separator.join(limits)

View File

@ -6,7 +6,7 @@ ansible-lint>=3.0.0,!=4.3.0 # MIT
bashate>=0.2 # Apache-2.0
coverage>=4.0 # Apache-2.0
doc8 # Apache-2.0
hacking>=3.0.1,<3.1.0 # Apache-2.0
hacking>=6.0.0,<6.1.0 # Apache-2.0
oslotest>=1.10.0 # Apache-2.0
stestr # Apache-2.0
yamllint # GPLv3