diff options
Diffstat (limited to 'test/integration/targets/gathering_facts/no_threads.yml')
-rw-r--r-- | test/integration/targets/gathering_facts/no_threads.yml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/integration/targets/gathering_facts/no_threads.yml b/test/integration/targets/gathering_facts/no_threads.yml deleted file mode 100644 index f8e21cd807..0000000000 --- a/test/integration/targets/gathering_facts/no_threads.yml +++ /dev/null @@ -1,21 +0,0 @@ -- hosts: localhost - tasks: - - block: - - set_fact: - normal_devices: "{{ ansible_facts['devices'].keys() }}" - - - name: facts already gathered normally, but now we do mounts again w/o multithreading - gather_facts: - gather_subset: mounts - register: no_multi - environment: - PYTHONPATH: "${PWD}/lib" - - - set_fact: - single_devices: "{{no_multi['ansible_facts']['ansible_devices'].keys()}}" - - - assert: - that: - - normal_devices == single_devices - when: - - ansible_facts['os_family'] not in ['FreeBSD', 'Darwin'] |