File tree 3 files changed +36
-9
lines changed
3 files changed +36
-9
lines changed Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ def _run(self) -> list[MatchError]:
246
246
def worker (lintable : Lintable ) -> list [MatchError ]:
247
247
return self ._get_ansible_syntax_check_matches (
248
248
lintable = lintable ,
249
+ inventory_opts = inventory_opts ,
249
250
app = self .app ,
250
251
)
251
252
@@ -257,6 +258,15 @@ def worker(lintable: Lintable) -> list[MatchError]:
257
258
continue
258
259
files .append (lintable )
259
260
261
+ inventory_opts = [
262
+ inventory_opt
263
+ for inventory_opts in [
264
+ ("-i" , inventory_file )
265
+ for inventory_file in self ._get_inventory_files (self .app )
266
+ ]
267
+ for inventory_opt in inventory_opts
268
+ ]
269
+
260
270
# avoid resource leak warning, https://github.com/python/cpython/issues/90549
261
271
# pylint: disable=unused-variable
262
272
global_resource = multiprocessing .Semaphore () # noqa: F841
@@ -304,6 +314,7 @@ def worker(lintable: Lintable) -> list[MatchError]:
304
314
def _get_ansible_syntax_check_matches (
305
315
self ,
306
316
lintable : Lintable ,
317
+ inventory_opts : list [str ],
307
318
app : App ,
308
319
) -> list [MatchError ]:
309
320
"""Run ansible syntax check and return a list of MatchError(s)."""
@@ -346,14 +357,7 @@ def _get_ansible_syntax_check_matches(
346
357
playbook_path = str (lintable .path .expanduser ())
347
358
cmd = [
348
359
"ansible-playbook" ,
349
- * [
350
- inventory_opt
351
- for inventory_opts in [
352
- ("-i" , inventory_file )
353
- for inventory_file in self ._get_inventory_files (app )
354
- ]
355
- for inventory_opt in inventory_opts
356
- ],
360
+ * inventory_opts ,
357
361
"--syntax-check" ,
358
362
playbook_path ,
359
363
]
Original file line number Diff line number Diff line change @@ -97,3 +97,26 @@ def test_with_inventory_via_ansible_cfg(tmp_path: Path) -> None:
97
97
98
98
result = run_ansible_lint (lintable .filename , cwd = tmp_path )
99
99
assert result .returncode == RC .SUCCESS
100
+
101
+
102
+ def test_with_inventory_concurrent_syntax_checks (tmp_path : Path ) -> None :
103
+ """Validate using inventory file with concurrent syntax checks aren't faulty."""
104
+ (tmp_path / "ansible.cfg" ).write_text ("[defaults]\n inventory = foo\n " )
105
+ (tmp_path / "foo" ).write_text ("[group_name]\n host1\n host2\n " )
106
+ lintable1 = Lintable (tmp_path / "playbook1.yml" )
107
+ lintable2 = Lintable (tmp_path / "playbook2.yml" )
108
+ lintable1 .content = "---\n - name: Test\n hosts:\n - group_name\n serial: \" {{ batch | default(groups['group_name'] | length) }}\" \n "
109
+ lintable2 .content = "---\n - name: Test\n hosts:\n - group_name\n serial: \" {{ batch | default(groups['group_name'] | length) }}\" \n "
110
+ lintable1 .kind = "playbook"
111
+ lintable2 .kind = "playbook"
112
+ lintable1 .write (force = True )
113
+ lintable2 .write (force = True )
114
+
115
+ counter = 0
116
+ while counter < 3 :
117
+ result = run_ansible_lint (lintable1 .filename , lintable2 .filename , cwd = tmp_path )
118
+ assert result .returncode == RC .SUCCESS
119
+ # AttributeError err is expected to look like what's reported here,
120
+ # https://github.com/ansible/ansible-lint/issues/4446.
121
+ assert "AttributeError" not in result .stderr
122
+ counter += 1
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ setenv =
75
75
PRE_COMMIT_COLOR = always
76
76
# Number of expected test passes, safety measure for accidental skip of
77
77
# tests. Update value if you add/remove tests. (tox-extra)
78
- PYTEST_REQPASS = 905
78
+ PYTEST_REQPASS = 906
79
79
FORCE_COLOR = 1
80
80
pre: PIP_PRE = 1
81
81
allowlist_externals =
You can’t perform that action at this time.
0 commit comments