diff options
author | Matt Davis <nitzmahone@users.noreply.github.com> | 2019-08-29 01:31:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-29 01:31:40 +0200 |
commit | 7d1a981b61eb996c64c406a92f73022d4d3a041b (patch) | |
tree | 1f41c44bc833f8ce9e45127a1a1aaac6f70abd84 /test/integration/targets/collections/posix.yml | |
parent | Fix TypeError in ec2_group.py for Python3 when sorting dictionary list (#59844) (diff) | |
download | ansible-7d1a981b61eb996c64c406a92f73022d4d3a041b.tar.xz ansible-7d1a981b61eb996c64c406a92f73022d4d3a041b.zip |
default collection support (#61415)
* default collection support
* playbooks run from inside a registered collection will set that collection as the first item in the search order (as will all non-collection roles)
* this allows easy migration of runme.sh style playbook/role integration tests to collections without the playbooks/roles needing to know the name of their enclosing collection
* ignore bogus sanity error
* filed #61460
* fixed task unit test failure
* don't append an empty collections list to the ds
* ignore leftover local_action in mod_args ds action parsing
* fix async_extra_data test to not require ssh and bogus locale
* disable default collection test under Windows
* ensure collection location FS code is always bytes
* add changelog
Diffstat (limited to 'test/integration/targets/collections/posix.yml')
-rw-r--r-- | test/integration/targets/collections/posix.yml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/integration/targets/collections/posix.yml b/test/integration/targets/collections/posix.yml index 8e9e263059..eac73e2d99 100644 --- a/test/integration/targets/collections/posix.yml +++ b/test/integration/targets/collections/posix.yml @@ -193,15 +193,6 @@ - testmodule_out.source == 'user' - systestmodule_out.source == 'sys' -# FIXME: this won't work until collections list gets passed through task templar -# - name: exercise unqualified filters/tests/lookups -# assert: -# that: -# - "'data' | testfilter == 'data_from_userdir'" -# - "'from_user' is testtest" -# - lookup('mylookup') == 'lookup_from_user_dir' - - # test keyword-static execution of a FQ collection-backed role with "tasks/main.yaml" - name: verify collection-backed role execution (keyword static) hosts: testhost |