You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets
Mike Bonnet 9c5d3060e5
uri: Handle the "force" parameter properly (#82187)
* uri: Two tests that demonstrate missing handling of the "force" parameter

Add unit and integration tests that demonstrate that the uri module is not
handling the "force" parameter.

The unit test demonstrates that when "force" is present in the module parameters,
it is not being passed through to fetch_url().

The integration test demonstrates that "force" does not disable caching as
documented, and calls with a "dest" parameter that points to an existing file
can result in a "304 Not Modified" response.

* uri: Handle the "force" parameter properly

The uri module documents a "force" parameter that can be used to disable caching.
The module accepted the parameter but didn't pass it through to the fetch_url() method
which implements the logic to handle setting the appropriate headers for disabling
caching. This change passes the "force" parameter through as expected, allowing caching
to be disabled when requested by the module caller.
9 months ago
..
add_host Incidental docker chip away (#77830) 2 years ago
adhoc Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ansiballz_python Require `from __future__ import annotations` (#81902) 1 year ago
ansible Require `from __future__ import annotations` (#81902) 1 year ago
ansible-config ansible-config dedupe ini plugin entries (#82498) 9 months ago
ansible-doc Interpret double newlines as paragraph breaks in documentation strings. (#82465) 9 months ago
ansible-galaxy Require `from __future__ import annotations` (#81902) 1 year ago
ansible-galaxy-collection Require `from __future__ import annotations` (#81902) 1 year ago
ansible-galaxy-collection-cli Fix ManifestControl dataclass to work with future annotations (#82215) 11 months ago
ansible-galaxy-collection-scm Consider all configured collection paths when installing collections (#81243) 1 year ago
ansible-galaxy-role Targeted fix for installing roles with symlinks containing '..' (#82165) 11 months ago
ansible-inventory Require `from __future__ import annotations` (#81902) 1 year ago
ansible-playbook-callbacks Fix issues with ansible-playbook-callbacks test (#82407) 9 months ago
ansible-pull ansible-pull: expand destinantion directoy to avoid purgin in / (#82030) 11 months ago
ansible-runner Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-cloud-acme ansible-test - split controller/target testing (#75605) 3 years ago
ansible-test-cloud-aws Add more ansible-test cloud tests. 3 years ago
ansible-test-cloud-azure Add more ansible-test cloud tests. 3 years ago
ansible-test-cloud-cs ansible-test - split controller/target testing (#75605) 3 years ago
ansible-test-cloud-galaxy ansible-test - split controller/target testing (#75605) 3 years ago
ansible-test-cloud-httptester Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ansible-test-cloud-httptester-windows ansible-test - split controller/target testing (#75605) 3 years ago
ansible-test-cloud-nios ansible-test - split controller/target testing (#75605) 3 years ago
ansible-test-cloud-openshift Update ansible-test openshift plugin tests (#80064) 2 years ago
ansible-test-config Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-config-invalid Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-container Don't hard-code Alpine version in container test 9 months ago
ansible-test-coverage Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-docker Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-git Log `runme.sh` execution in integration tests (#79263) 2 years ago
ansible-test-installed ansible-test - Always use managed entry points (#81537) 1 year ago
ansible-test-integration Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-integration-constraints Split up ansible-test integration tests. (#78520) 2 years ago
ansible-test-integration-targets Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-no-tty Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-ansible-doc Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-import Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-lint Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ansible-test-sanity-no-get-exception Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-pylint Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-replace-urlopen Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-shebang Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ansible-test-sanity-use-compat-six Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-sanity-validate-modules Support `action_plugin` in plugin_routing_schema (#82562) 9 months ago
ansible-test-sanity-yamllint ansible-test - Allow multiple documents in the YAML stream for EXAMPLES (#82355) 10 months ago
ansible-test-shell Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ansible-test-units Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-units-assertions Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-units-constraints Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-units-forked Require `from __future__ import annotations` (#81902) 1 year ago
ansible-test-unsupported-directory Split up ansible-test integration tests. (#78520) 2 years ago
ansible-test-vendoring ansible-test - Fix vendoring support (#80074) 2 years ago
ansible-vault Clean up shellcheck issues in tests 10 months ago
ansible_log displaly. log, handle when caplevel is already taken care of (#82227) 11 months ago
any_errors_fatal any_errors_fatal fixes (#78680) 1 year ago
apt apt: ignore fail_on_autoremove and allow_downgrade when using aptitude (#81445) 1 year ago
apt_key Remove obsolete integration test aliases (#80342) 2 years ago
apt_repository Remove more Python 2 handling from tests (#82449) 10 months ago
args Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
argspec Require `from __future__ import annotations` (#81902) 1 year ago
assemble assemble: fixed missing parameter error (#82360) 10 months ago
assert Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
async Require `from __future__ import annotations` (#81902) 1 year ago
async_extra_data Require `from __future__ import annotations` (#81902) 1 year ago
async_fail Require `from __future__ import annotations` (#81902) 1 year ago
become Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
become_su Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
become_unprivileged Require `from __future__ import annotations` (#81902) 1 year ago
binary group2 - switch to setup_remote_tmp_dir instead of using output_dir (#76853) 3 years ago
binary_modules Update ci-files URL in integration tests. 3 years ago
binary_modules_posix Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
binary_modules_winrm
blockinfile blockinfile: avoid crash on Python 3 when creating directory fails (#81662) 1 year ago
blocks Correctly count rescued tasks in play stats (#79724) 2 years ago
builtin_vars_prompt Require `from __future__ import annotations` (#81902) 1 year ago
callback_default copy keep suffix on temp file for validation (#82158) 11 months ago
changed_when Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
check_mode Remove trailing spaces from lines in YAML (#80032) 2 years ago
cli Require `from __future__ import annotations` (#81902) 1 year ago
collection Require `from __future__ import annotations` (#81902) 1 year ago
collections Add the task info for tombstoned module/action plugins (#82451) 10 months ago
collections_plugin_namespace Require `from __future__ import annotations` (#81902) 1 year ago
collections_relative_imports Require `from __future__ import annotations` (#81902) 1 year ago
collections_runtime_pythonpath Clean up shellcheck issues in tests 10 months ago
command_nonexisting Add missing newlines to YAML files (#80031) 2 years ago
command_shell Remove more Python 2 handling from tests (#82449) 10 months ago
common_network Require `from __future__ import annotations` (#81902) 1 year ago
conditionals restore conditional lookup nerfing (#81460) 1 year ago
config Clean up shellcheck issues in tests 10 months ago
connection Preflight utf8 encodings check (#78175) 2 years ago
connection_delegation Require `from __future__ import annotations` (#81902) 1 year ago
connection_local Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
connection_paramiko_ssh paramiko connection now uses the correct source of data (#79704) 2 years ago
connection_psrp Add tests to cover win_reboot incidental paths (#79856) 2 years ago
connection_remote_is_local Require `from __future__ import annotations` (#81902) 1 year ago
connection_ssh Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
connection_windows_ssh Remove obsolete skip/windows test aliases. 3 years ago
connection_winrm Add tests to cover win_reboot incidental paths (#79856) 2 years ago
controller Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
copy Replace Unicode no-break spaces with ASCII spaces 9 months ago
cron Remove obsolete integration test aliases (#80342) 2 years ago
dataloader Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
deb822_repository deb822_repository: handle idempotency (#82483) 9 months ago
debconf debconf: idempotency for password question (#81484) 1 year ago
debug Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
debugger Require `from __future__ import annotations` (#81902) 1 year ago
delegate_to Better errors for delegate_to (#82319) 11 months ago
dict_transformations Require `from __future__ import annotations` (#81902) 1 year ago
dnf Re-enable "group removal" integration test for dnf5 (#82250) 11 months ago
dnf5 Add new dnf5 module (#80272) 2 years ago
dpkg_selections dpkg_selections: Check if package exists before selection operation (#81406) 1 year ago
egg-info Require `from __future__ import annotations` (#81902) 1 year ago
embedded_module ansible-test - split controller/target testing (#75605) 3 years ago
entry_points Enable vendored copy of distutils in entry_point test (#82232) 11 months ago
environment Deprecate using a list of dicts for vars. See #78920 (#78927) 2 years ago
error_from_connection Require `from __future__ import annotations` (#81902) 1 year ago
expect expect - fix argument spec error with timeout=null (#82522) 9 months ago
facts_d Fix local facts unreadable (#76095) 2 years ago
facts_linux_network Remove obsolete integration test aliases (#80342) 2 years ago
failed_when Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
fetch Require `from __future__ import annotations` (#81902) 1 year ago
file Replace Unicode no-break spaces with ASCII spaces 9 months ago
filter_core Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
filter_encryption Improve filter_encryption test 1 year ago
filter_mathstuff Fix set filters to use set operations (#81639) 1 year ago
filter_urls Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
filter_urlsplit Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
find find - add encoding option to use in conjunction with contains (#82284) 9 months ago
fork_safe_stdio Require `from __future__ import annotations` (#81902) 1 year ago
gathering Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
gathering_facts Replace Unicode no-break spaces with ASCII spaces 9 months ago
get_url Remove more Python 2 handling from tests (#82449) 10 months ago
getent ansible-test - Remove AIX provisioning support. (#76747) 3 years ago
git 🐛 Make integration tests compatible w/ modern Git (#80122) 2 years ago
group Require `from __future__ import annotations` (#81902) 1 year ago
group_by Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
groupby_filter Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
handler_race Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
handlers Run all handlers with the same `listen` topic when notified from another handler (#82364) 10 months ago
hardware_facts Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
hash Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
hostname Add RHEL 9.0 to CI. (#77853) 2 years ago
hosts_field Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ignore_errors Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
ignore_unreachable Require `from __future__ import annotations` (#81902) 1 year ago
import_tasks Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
incidental_ios_file Remove include from tests (#74330) 4 years ago
incidental_vyos_config Remove include from tests (#74330) 4 years ago
incidental_vyos_lldp_interfaces Remove include from tests (#74330) 4 years ago
incidental_vyos_prepare_tests
incidental_win_reboot Third batch of incidental integration tests. (#67830) 5 years ago
include_import Require `from __future__ import annotations` (#81902) 1 year ago
include_import_tasks_nested Incidental coverage 1 (#77846) 2 years ago
include_parent_role_vars
include_vars Fix ansible.builtin.include_vars - depth (#80995) 9 months ago
include_vars-ad-hoc Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
include_when_parent_is_dynamic Remove deprecated include (#80752) 1 year ago
include_when_parent_is_static Remove deprecated include (#80752) 1 year ago
includes Remove deprecated include (#80752) 1 year ago
includes_race Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
infra Require `from __future__ import annotations` (#81902) 1 year ago
interpreter_discovery_python Require `from __future__ import annotations` (#81902) 1 year ago
interpreter_discovery_python_delegate_facts Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
inventory Require `from __future__ import annotations` (#81902) 1 year ago
inventory-invalid-group Integration tests for invalid group name. 2 years ago
inventory_advanced_host_list Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
inventory_cache Require `from __future__ import annotations` (#81902) 1 year ago
inventory_constructed Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
inventory_ini inventory_ini: Handle SyntaxWarning in ini parsing (#81707) 1 year ago
inventory_script Removed sorting to preserve original order (#74839) 2 years ago
inventory_yaml Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
iptables iptables chain creation does not populate with a rule (#80257) 1 year ago
jinja2_native_types Fix test for jinja2_native preserve quotes (#79131) 2 years ago
jinja_plugins Require `from __future__ import annotations` (#81902) 1 year ago
json_cleanup Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
keyword_inheritance Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
known_hosts Update known_hosts module to better handle @cert-authority keys (#70340) 11 months ago
limit_inventory Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lineinfile check if there attributes to set (#78707) 11 months ago
lookup-option-name Update lookup to use positional only arg for name to avoid conflicts (#79839) 2 years ago
lookup_config config lookup, new option to show origin of value (#80651) 1 year ago
lookup_csvfile csvfile - add a keycol parameter to specify in which column to search. (#82242) 11 months ago
lookup_dict Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_env Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_file Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_fileglob Fix nested jinja statements in integration tests (#81591) 1 year ago
lookup_first_found first_found lookup, let lookup handle templating errors (#81178) 1 year ago
lookup_indexed_items Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_ini Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_inventory_hostnames Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_items Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_lines Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_list refactor and fixes for doc parsing (#77719) 2 years ago
lookup_nested Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_password Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
lookup_pipe Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_random_choice Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_sequence Add missing newlines to YAML files (#80031) 2 years ago
lookup_subelements Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_template Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_together Add missing newlines to YAML files (#80031) 2 years ago
lookup_unvault Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_url Fix typos in url lookup plugin options (#81587) 1 year ago
lookup_varnames Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lookup_vars Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
loop-connection Require `from __future__ import annotations` (#81902) 1 year ago
loop-until Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
loop_control Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
loops Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
meta_tasks Print skip reason for skipped meta tasks instead of an empty msg in -vv (#78681) 2 years ago
missing_required_lib Require `from __future__ import annotations` (#81902) 1 year ago
module_defaults Require `from __future__ import annotations` (#81902) 1 year ago
module_no_log no_log avoid masking booleans (#82217) 11 months ago
module_precedence Remove obsolete compat code from integration tests (#81961) 1 year ago
module_tracebacks Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
module_utils Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
module_utils_Ansible.AccessToken ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.Basic remote log info (#81711) 11 months ago
module_utils_Ansible.Become PowerShell - remove uneeded dotnet code for future compatibility (#81472) 1 year ago
module_utils_Ansible.ModuleUtils.AddType AddType - Support compiling with /unsafe C# code (#79853) 2 years ago
module_utils_Ansible.ModuleUtils.ArgvParser Separated ps module_util test targets, added WebRequest tests (#67914) 5 years ago
module_utils_Ansible.ModuleUtils.Backup ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.CamelConversion ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.CommandUtil ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.FileUtil ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.Legacy ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.LinkUtil ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.PrivilegeUtil ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.SID ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.ModuleUtils.WebRequest ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.Privilege ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.Process ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_Ansible.Service ansible-test pssa update and new rules (#76256) 3 years ago
module_utils_ansible_release Require `from __future__ import annotations` (#81902) 1 year ago
module_utils_common.respawn Require `from __future__ import annotations` (#81902) 1 year ago
module_utils_distro Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
module_utils_facts.system.selinux fix SELinux facts tests 3 years ago
module_utils_urls Require `from __future__ import annotations` (#81902) 1 year ago
network_cli Fix network_cli test to use a trap for cleanup (#69762) 4 years ago
no_log Ensure ANSIBLE_NO_LOG is respected (CVE-2024-0690) (#82565) 9 months ago
noexec Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
old_style_cache_plugins Require `from __future__ import annotations` (#81902) 1 year ago
old_style_modules_posix Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
old_style_vars_plugins Require `from __future__ import annotations` (#81902) 1 year ago
omit Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
order Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
package Add missing newlines to YAML files (#80031) 2 years ago
package_facts Remove obsolete integration test aliases (#80342) 2 years ago
packaging_cli-doc Require `from __future__ import annotations` (#81902) 1 year ago
parsing Remove deprecated include (#80752) 1 year ago
path_lookups lookups, make file searching use better is_role (#82290) 11 months ago
path_with_comma_in_inventory Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
pause Require `from __future__ import annotations` (#81902) 1 year ago
ping
pip pip - Add break_system_packages option (#82097) 12 months ago
pkg_resources Require `from __future__ import annotations` (#81902) 1 year ago
play_iterator Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
playbook Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
plugin_config_for_inventory Require `from __future__ import annotations` (#81902) 1 year ago
plugin_filtering fix reject list (#79391) 2 years ago
plugin_loader Fix plugin_loader integration test error handling 10 months ago
plugin_namespace Require `from __future__ import annotations` (#81902) 1 year ago
preflight_encoding Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
prepare_http_tests Remove obsolete requirements from prepare_http_tests 1 year ago
prepare_tests/tasks
pyyaml Log `runme.sh` execution in integration tests (#79263) 2 years ago
raw The final `output_dir` pr (#76862) 3 years ago
reboot Replace `reboot_command` integration test with unit tests (#78956) 1 year ago
register strategy fix invalid variables being registered (#79706) 2 years ago
rel_plugin_loading Replace unwelcoming words (#82413) 10 months ago
remote_tmp Fix remote_tmp tests so that they actually use the remote_tmp (#80969) 1 year ago
replace replace: handle exception while parsing escape char (#81244) 1 year ago
result_pickle_error Require `from __future__ import annotations` (#81902) 1 year ago
retry_task_name_in_callback Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
roles Role fixes (#82339) 10 months ago
roles_arg_spec argspec - fix validating type for required options that are None (#79677) 2 years ago
roles_var_inheritance Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
rpm_key add task for testing to remove gpg key using key id (#79729) 2 years ago
run_modules Require `from __future__ import annotations` (#81902) 1 year ago
script uri action plugin check_mode support update (#82484) 9 months ago
service Replace Unicode no-break spaces with ASCII spaces 9 months ago
service_facts Require `from __future__ import annotations` (#81902) 1 year ago
set_fact Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
set_stats Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
setup_cron Disable cron integration test on Alpine (#81301) 1 year ago
setup_deb_repo New deb822_repository module (#80018) 2 years ago
setup_epel/tasks Fix EPEL setup for integration tests on RHEL 7 2 years ago
setup_gnutar Changes required for macOS 10.15 (#71841) 4 years ago
setup_nobody
setup_paramiko Require `from __future__ import annotations` (#81902) 1 year ago
setup_passlib/tasks
setup_passlib_controller Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
setup_pexpect Remove more Python 2 handling from tests (#82449) 10 months ago
setup_remote_constraints
setup_remote_tmp_dir deprecate `_remote_checksum()` and remove use in fetch (#74848) 3 years ago
setup_rpm_repo Update Python3 12 months ago
setup_test_user Split integration test fixes. (#78281) 2 years ago
setup_win_printargv Update ci-files URL in integration tests. 3 years ago
shell Require `from __future__ import annotations` (#81902) 1 year ago
slurp Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
special_vars Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
special_vars_hosts Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
split Improve split integration test. (#78738) 2 years ago
stat stat document 'version' return doc (#76589) 3 years ago
strategy_free Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
strategy_linear Fix run_once by instantly tiny post_validate (#78492) (#80051) 2 years ago
subversion default svn URL to 127.0.0.1 for subversion integration tests (#82551) 9 months ago
support-callback_plugins Avoid delattr in test callback plugin (#82550) 9 months ago
systemd Add missing newlines to YAML files (#80031) 2 years ago
tags Properly template tags in parent blocks (#81624) 1 year ago
task_ordering Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
tasks don't ignore templated _raw_params that k=v parser failed to parse (#79913) 2 years ago
tempfile tempfile - Remove unnecessary conditional. (#75039) 3 years ago
template Require `from __future__ import annotations` (#81902) 1 year ago
template_jinja2_non_native Fix nested jinja statements in integration tests (#81591) 1 year ago
templating Do not crash templating when filter/test name is not a valid Ansible plugin name (#78913) 2 years ago
templating_lookups Require `from __future__ import annotations` (#81902) 1 year ago
templating_settings Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
test_core Add condition that causes a when to skip a task to output msg (#78918) 2 years ago
test_files Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
test_mathstuff Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
test_uri Add uri, urn and url test plugins (#77423) 2 years ago
test_utils Require `from __future__ import annotations` (#81902) 1 year ago
throttle Require `from __future__ import annotations` (#81902) 1 year ago
unarchive Remove crypt support from ansible.utils.encrypt (#81721) 9 months ago
undefined Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
unexpected_executor_exception Require `from __future__ import annotations` (#81902) 1 year ago
unicode Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
unsafe_writes Remove obsolete integration test aliases (#80342) 2 years ago
until Require `from __future__ import annotations` (#81902) 1 year ago
unvault filters vault/unvault fix vault_id parameter usage (#81422) 1 year ago
uri uri: Handle the "force" parameter properly (#82187) 9 months ago
user Issue #80267: Remove user not found warning (#80291) 11 months ago
var_blending Remove trailing spaces from lines in YAML (#80032) 2 years ago
var_inheritance Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
var_precedence restore role param precedence (#82106) 12 months ago
var_reserved Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
var_templating Fix traceback in template action with ANSIBLE_DEBUG=1 (#79764) 2 years ago
vars_files Add tests to validate vars_files first found behavior (#79386) 2 years ago
wait_for wait_for, fallback to read for non mmapable files (#82064) 11 months ago
wait_for_connection Test the delay option in wait_for_connection. 5 years ago
want_json_modules_posix Require `from __future__ import annotations` (#81902) 1 year ago
win_async_wrapper Change ansible_job_id format (#79951) 2 years ago
win_become
win_exec_wrapper Require `from __future__ import annotations` (#81902) 1 year ago
win_fetch win_fetch - improve test time by not scanning Win dir (#81884) 1 year ago
win_module_utils ansible-test pssa update and new rules (#76256) 3 years ago
win_raw
win_script Fix up sanity problems 2 years ago
windows-minimal Fix up sanity problems 2 years ago
windows-paths
yaml_parsing Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
yum Require `from __future__ import annotations` (#81902) 1 year ago
yum_repository Remove COMMAND_WARNINGS and warn (#77411) 3 years ago