summaryrefslogtreecommitdiff
path: root/test/integration/targets/module_precedence
Commit message (Collapse)AuthorAgeFilesLines
* Re-organize CI test groups for POSIX tests. (#77420)Matt Clay2022-08-041-1/+1
| | | | | | * `context/target` tests must be in groups 1 - 2. * `context/controller` tests must be in groups 3 - 5. This makes it easier to efficiently organize groups and balance test runtimes.
* ansible-test - split controller/target testing (#75605)Matt Clay2021-09-201-0/+1
|
* More boilerplate fixes. (#70224)Matt Clay2020-06-226-0/+12
| | | | | | | * Fix boilerplate in hacking dir. * Fix boilerplate in docs dir. * Fix boilerplate in integration tests. * Fix boilerplate in examples.
* Rebalance CI groups to avoid macOS timeouts (#70126)Sam Doran2020-06-191-1/+1
|
* Filter BLACKLIST_EXTS in PluginLoader (#69029)Rick Elrod2020-04-229-0/+131
| | | | | | | | | | | | | | | | | | | | | | | Change: Rather than hardcoding .pyo and .pyc, filter on all BLACKLIST_EXTS in the non-legacy logic of PluginLoader (_find_fq_plugin). The two harcoded extensions are part of BLACKLIST_EXTS already and this simply adds the rest of the blacklisted extensions to the check. In addition, check .endswith() instead of an exact match of the suffix, like everywhere else that uses BLACKLIST_EXTS. This allows for blacklisting, for example, emacs's backup files which can appear after any extension, leading to things like `foo.py~`. Test Plan: Ran `ansible-playbook` against a collection where a `foo.py~` module was getting executed instead of `foo.py` which also appeared in the same directory. `foo.py~` is no longer executed. Tickets: Fixes #22268 Refs #27235 Signed-off-by: Rick Elrod <rick@elrod.me>
* More test fixes for split controller/remote tests.Matt Clay2019-01-255-5/+5
|
* Remove unnecessary absolute paths from tests.Matt Clay2019-01-171-13/+13
|
* Update Shippable integration test groups. (#43118)Matt Clay2018-07-231-1/+1
| | | | | | | * Update Shippable integration test groups. * Update integration test group aliases. * Rebalance AWS and Azure tests with extra group. * Rebalance Windows tests with another group.
* metadata 1.1Toshio Kuratomi2017-08-156-6/+6
| | | | | | | | * Add network value to support_by field. * New support_by value, certified * Deprecate curated in favor of certified * Add conversion from 1.0 to 1.1 to metadata-tool * Add supported by Red Hat field to ansible-doc output
* Add integration test that modules are loaded from the expected locations ↵Toshio Kuratomi2017-05-0117-0/+552
(#24170) * Add integration test that modules are loaded from the expected locations * Fix ping module to pass PEP8