mirror of
https://github.com/ansible/awx.git
synced 2026-06-24 16:17:51 -02:30
* Add new tests for bug saving concurrent facts * Fix first bug and improve tests * Fix new bug where concurrent job clears facts from other job in unwanted way * minor test fixes * Add in missing playbook * Fix host reference for constructed inventory * Increase speed for concurrent fact tests * Make test a bit faster * Fix linters * Add some functional tests * Remove the sanity test * Agent markers added * Address SonarCloud * Do backdating method, resolving stricter assertions * Address coderabbit comments * Address review comment with qs only method * Delete missed sleep statement * Add more coverage
22 lines
439 B
YAML
22 lines
439 B
YAML
---
|
|
# Generated by Claude Opus 4.6 (claude-opus-4-6).
|
|
|
|
- hosts: all
|
|
vars:
|
|
extra_value: ""
|
|
gather_facts: false
|
|
connection: local
|
|
tasks:
|
|
- name: set a custom fact
|
|
set_fact:
|
|
foo: "bar{{ extra_value }}"
|
|
bar:
|
|
a:
|
|
b:
|
|
- "c"
|
|
- "d"
|
|
cacheable: true
|
|
- name: sleep to create overlap window for concurrent job testing
|
|
wait_for:
|
|
timeout: 2
|