Merge "Bump hacking version"
This commit is contained in:
commit
9836fa7e6c
@ -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")
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user