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
Yacht Shaver c7334ea92c
Fix url encoded credentials in netloc (#82552)
Prior to this commit, it was impossible to use a module like dnf with a
URL that contains a username with an @ such as an email address
username, because:

  dnf:
    name: https://foo@example.com:bar@example.com/some.rpm

Would cause netloc parsing to fail. However, the following:

  dnf:
    name: https://foo%40example.com:bar@example.com/some.rpm

Would also fail because ansible would *not* URL-decode the credentials,
causing the following to be base64 encoded in the Authorization header:

  Zm9vJTQwZXhhbXBsZS5jb206YmFyCg==

Which decodes to:

  foo%40example.com:foo

Which is *not* the authorized username, and as such, *won't* pass basic
auth.

With this commit, Ansible's url lib behaves like curl, chromium, wget,
etc, and encodes the above to:

  Zm9vQGV4YW1wbGUuY29tOmJhcgo=

Which decodes to:

  foo@example.com:bar

Which will actually pass the HTTP Basic Auth, and is the same behaviour
that you will find ie. with:

  curl -vvI https://foo%40bar:test@example.com 2>&1 |grep Auth | awk '{ print $4 }'
4 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) 8 months ago
ansible Require `from __future__ import annotations` (#81902) 8 months ago
ansible-config ansible-config dedupe ini plugin entries (#82498) 5 months ago
ansible-doc Interpret double newlines as paragraph breaks in documentation strings. (#82465) 5 months ago
ansible-galaxy Require `from __future__ import annotations` (#81902) 8 months ago
ansible-galaxy-collection Require `from __future__ import annotations` (#81902) 8 months ago
ansible-galaxy-collection-cli Fix ManifestControl dataclass to work with future annotations (#82215) 7 months ago
ansible-galaxy-collection-scm Consider all configured collection paths when installing collections (#81243) 11 months ago
ansible-galaxy-role Targeted fix for installing roles with symlinks containing '..' (#82165) 6 months ago
ansible-inventory Require `from __future__ import annotations` (#81902) 8 months ago
ansible-playbook-callbacks Play recap stats and callbacks for include_role, consolidate with include_tasks (#79260) 4 months ago
ansible-pull ansible-pull: expand destinantion directoy to avoid purgin in / (#82030) 7 months ago
ansible-runner Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test Require `from __future__ import annotations` (#81902) 8 months 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) 1 year ago
ansible-test-config Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-config-invalid Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-container Don't hard-code Alpine version in container test 5 months ago
ansible-test-coverage Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-docker Require `from __future__ import annotations` (#81902) 8 months 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) 10 months ago
ansible-test-integration Require `from __future__ import annotations` (#81902) 8 months 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) 8 months ago
ansible-test-no-tty Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-sanity Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-sanity-ansible-doc Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-sanity-import Require `from __future__ import annotations` (#81902) 8 months 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) 8 months ago
ansible-test-sanity-pylint Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-sanity-replace-urlopen Require `from __future__ import annotations` (#81902) 8 months 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) 8 months ago
ansible-test-sanity-validate-modules Support `action_plugin` in plugin_routing_schema (#82562) 4 months ago
ansible-test-sanity-yamllint ansible-test - Allow multiple documents in the YAML stream for EXAMPLES (#82355) 6 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) 8 months ago
ansible-test-units-assertions Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-units-constraints Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-units-forked Require `from __future__ import annotations` (#81902) 8 months ago
ansible-test-unsupported-directory Split up ansible-test integration tests. (#78520) 2 years ago
ansible-test-vendoring ansible-test - Fix vendoring support (#80074) 1 year ago
ansible-vault Clean up shellcheck issues in tests 5 months ago
ansible_log displaly. log, handle when caplevel is already taken care of (#82227) 7 months ago
any_errors_fatal any_errors_fatal fixes (#78680) 7 months ago
apt apt: ignore fail_on_autoremove and allow_downgrade when using aptitude (#81445) 9 months ago
apt_key Remove obsolete integration test aliases (#80342) 1 year ago
apt_repository Remove more Python 2 handling from tests (#82449) 5 months ago
args Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
argspec Require `from __future__ import annotations` (#81902) 8 months ago
assemble assemble: fixed missing parameter error (#82360) 6 months ago
assert Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
async Require `from __future__ import annotations` (#81902) 8 months ago
async_extra_data Require `from __future__ import annotations` (#81902) 8 months ago
async_fail Require `from __future__ import annotations` (#81902) 8 months ago
become Remove crypt support from ansible.utils.encrypt (#81721) 5 months ago
become_su Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
become_unprivileged Require `from __future__ import annotations` (#81902) 8 months ago
binary group2 - switch to setup_remote_tmp_dir instead of using output_dir (#76853) 2 years ago
binary_modules Update ci-files URL in integration tests. 2 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) 9 months ago
blocks Correctly count rescued tasks in play stats (#79724) 1 year ago
builtin_vars_prompt Require `from __future__ import annotations` (#81902) 8 months ago
callback_default Play recap stats and callbacks for include_role, consolidate with include_tasks (#79260) 4 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) 1 year ago
cli Require `from __future__ import annotations` (#81902) 8 months ago
collection Require `from __future__ import annotations` (#81902) 8 months ago
collections Add the task info for tombstoned module/action plugins (#82451) 5 months ago
collections_plugin_namespace Require `from __future__ import annotations` (#81902) 8 months ago
collections_relative_imports Require `from __future__ import annotations` (#81902) 8 months ago
collections_runtime_pythonpath Clean up shellcheck issues in tests 5 months ago
command_nonexisting Add missing newlines to YAML files (#80031) 1 year ago
command_shell Remove more Python 2 handling from tests (#82449) 5 months ago
common_network Require `from __future__ import annotations` (#81902) 8 months ago
conditionals restore conditional lookup nerfing (#81460) 10 months ago
config Clean up shellcheck issues in tests 5 months ago
connection Preflight utf8 encodings check (#78175) 2 years ago
connection_delegation Require `from __future__ import annotations` (#81902) 8 months 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) 1 year ago
connection_psrp Add tests to cover win_reboot incidental paths (#79856) 1 year ago
connection_remote_is_local Require `from __future__ import annotations` (#81902) 8 months ago
connection_ssh Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
connection_windows_ssh Remove obsolete skip/windows test aliases. 2 years ago
connection_winrm Add tests to cover win_reboot incidental paths (#79856) 1 year ago
controller Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
copy Replace Unicode no-break spaces with ASCII spaces 5 months ago
cron Remove obsolete integration test aliases (#80342) 1 year ago
dataloader Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
deb822_repository deb822_repository: handle idempotency (#82483) 5 months ago
debconf debconf: idempotency for password question (#81484) 9 months ago
debug Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
debugger Require `from __future__ import annotations` (#81902) 8 months ago
delegate_to Better errors for delegate_to (#82319) 6 months ago
dict_transformations Require `from __future__ import annotations` (#81902) 8 months ago
dnf Re-enable "group removal" integration test for dnf5 (#82250) 6 months ago
dnf5 Add new dnf5 module (#80272) 1 year ago
dpkg_selections dpkg_selections: Check if package exists before selection operation (#81406) 10 months ago
egg-info Require `from __future__ import annotations` (#81902) 8 months 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) 7 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) 8 months ago
expect expect - fix argument spec error with timeout=null (#82522) 5 months ago
facts_d Fix local facts unreadable (#76095) 2 years ago
facts_linux_network Remove obsolete integration test aliases (#80342) 1 year ago
failed_when Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
fetch Require `from __future__ import annotations` (#81902) 8 months ago
file Replace Unicode no-break spaces with ASCII spaces 5 months ago
filter_core Remove crypt support from ansible.utils.encrypt (#81721) 5 months ago
filter_encryption Improve filter_encryption test 7 months ago
filter_mathstuff Fix set filters to use set operations (#81639) 9 months 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) 4 months ago
fork_safe_stdio Require `from __future__ import annotations` (#81902) 8 months ago
gathering Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
gathering_facts Replace Unicode no-break spaces with ASCII spaces 5 months ago
get_url Remove more Python 2 handling from tests (#82449) 5 months ago
getent ansible-test - Remove AIX provisioning support. (#76747) 2 years ago
git 🐛 Make integration tests compatible w/ modern Git (#80122) 1 year ago
group Require `from __future__ import annotations` (#81902) 8 months 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) 6 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) 8 months ago
import_tasks Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
incidental_ios_file Remove include from tests (#74330) 3 years ago
incidental_vyos_config Remove include from tests (#74330) 3 years ago
incidental_vyos_lldp_interfaces Remove include from tests (#74330) 3 years ago
incidental_vyos_prepare_tests First batch of incidental integration tests. (#67717) 4 years ago
incidental_win_reboot Third batch of incidental integration tests. (#67830) 4 years ago
include_import Play recap stats and callbacks for include_role, consolidate with include_tasks (#79260) 4 months 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) 4 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) 8 months ago
interpreter_discovery_python Require `from __future__ import annotations` (#81902) 8 months 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) 8 months 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) 8 months 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) 9 months 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) 10 months ago
jinja2_native_types Fix test for jinja2_native preserve quotes (#79131) 2 years ago
jinja_plugins Require `from __future__ import annotations` (#81902) 8 months 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) 5 months ago
known_hosts Update known_hosts module to better handle @cert-authority keys (#70340) 6 months ago
limit_inventory Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
lineinfile check if there attributes to set (#78707) 6 months ago
lookup-option-name Update lookup to use positional only arg for name to avoid conflicts (#79839) 1 year 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) 6 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) 9 months ago
lookup_first_found first_found lookup, let lookup handle templating errors (#81178) 11 months 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) 5 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) 1 year 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) 1 year 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) 9 months 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) 8 months 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) 8 months ago
module_defaults Require `from __future__ import annotations` (#81902) 8 months ago
module_no_log no_log avoid masking booleans (#82217) 7 months ago
module_precedence Remove obsolete compat code from integration tests (#81961) 8 months 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) 5 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) 6 months ago
module_utils_Ansible.Become PowerShell - remove uneeded dotnet code for future compatibility (#81472) 9 months ago
module_utils_Ansible.ModuleUtils.AddType AddType - Support compiling with /unsafe C# code (#79853) 1 year ago
module_utils_Ansible.ModuleUtils.ArgvParser Separated ps module_util test targets, added WebRequest tests (#67914) 4 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) 8 months ago
module_utils_common.respawn Require `from __future__ import annotations` (#81902) 8 months 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 2 years ago
module_utils_urls Require `from __future__ import annotations` (#81902) 8 months 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) 4 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) 8 months 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) 8 months ago
omit Remove crypt support from ansible.utils.encrypt (#81721) 5 months ago
order Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
package Add missing newlines to YAML files (#80031) 1 year ago
package_facts Remove obsolete integration test aliases (#80342) 1 year ago
packaging_cli-doc Require `from __future__ import annotations` (#81902) 8 months ago
parsing Remove deprecated include (#80752) 1 year ago
path_lookups lookups, make file searching use better is_role (#82290) 6 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) 8 months ago
ping
pip pip - Add break_system_packages option (#82097) 7 months ago
pkg_resources Require `from __future__ import annotations` (#81902) 8 months 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) 8 months ago
plugin_filtering fix reject list (#79391) 2 years ago
plugin_loader Fix plugin_loader integration test error handling 5 months ago
plugin_namespace Require `from __future__ import annotations` (#81902) 8 months 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 7 months ago
prepare_tests/tasks
pyyaml Log `runme.sh` execution in integration tests (#79263) 2 years ago
raw The final `output_dir` pr (#76862) 2 years ago
reboot Replace `reboot_command` integration test with unit tests (#78956) 11 months ago
register strategy fix invalid variables being registered (#79706) 1 year ago
rel_plugin_loading Replace unwelcoming words (#82413) 6 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) 11 months ago
result_pickle_error Require `from __future__ import annotations` (#81902) 8 months ago
retry_task_name_in_callback Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
roles Role fixes (#82339) 5 months ago
roles_arg_spec argspec - fix validating type for required options that are None (#79677) 1 year 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) 1 year ago
run_modules Require `from __future__ import annotations` (#81902) 8 months ago
script uri action plugin check_mode support update (#82484) 5 months ago
service Replace Unicode no-break spaces with ASCII spaces 5 months ago
service_facts Require `from __future__ import annotations` (#81902) 8 months 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) 11 months ago
setup_deb_repo New deb822_repository module (#80018) 1 year ago
setup_epel/tasks Fix EPEL setup for integration tests on RHEL 7 1 year ago
setup_gnutar Changes required for macOS 10.15 (#71841) 4 years ago
setup_nobody
setup_paramiko Require `from __future__ import annotations` (#81902) 8 months ago
setup_passlib/tasks
setup_passlib_controller Remove crypt support from ansible.utils.encrypt (#81721) 5 months ago
setup_pexpect Remove more Python 2 handling from tests (#82449) 5 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 7 months ago
setup_test_user Split integration test fixes. (#78281) 2 years ago
setup_win_printargv Update ci-files URL in integration tests. 2 years ago
shell Require `from __future__ import annotations` (#81902) 8 months ago
slurp Remove crypt support from ansible.utils.encrypt (#81721) 5 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) 2 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) 1 year ago
subversion default svn URL to 127.0.0.1 for subversion integration tests (#82551) 5 months ago
support-callback_plugins Avoid delattr in test callback plugin (#82550) 5 months ago
systemd Add missing newlines to YAML files (#80031) 1 year ago
tags Properly template tags in parent blocks (#81624) 8 months 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) 1 year ago
tempfile tempfile - Remove unnecessary conditional. (#75039) 3 years ago
template Require `from __future__ import annotations` (#81902) 8 months ago
template_jinja2_non_native Fix nested jinja statements in integration tests (#81591) 9 months 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) 8 months 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) 1 year 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) 8 months ago
throttle Require `from __future__ import annotations` (#81902) 8 months ago
unarchive Remove crypt support from ansible.utils.encrypt (#81721) 5 months ago
undefined Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
unexpected_executor_exception Require `from __future__ import annotations` (#81902) 8 months ago
unicode Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
unsafe_writes Remove obsolete integration test aliases (#80342) 1 year ago
until Require `from __future__ import annotations` (#81902) 8 months ago
unvault filters vault/unvault fix vault_id parameter usage (#81422) 10 months ago
uri Fix url encoded credentials in netloc (#82552) 4 months ago
user Issue #80267: Remove user not found warning (#80291) 6 months ago
var_blending Remove trailing spaces from lines in YAML (#80032) 1 year ago
var_inheritance Re-organize CI test groups for POSIX tests. (#77420) 2 years ago
var_precedence restore role param precedence (#82106) 7 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) 1 year 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) 7 months ago
wait_for_connection Test the delay option in wait_for_connection. 4 years ago
want_json_modules_posix Require `from __future__ import annotations` (#81902) 8 months ago
win_async_wrapper Change ansible_job_id format (#79951) 1 year ago
win_become become - stop using play context in more places (#62373) 5 years ago
win_exec_wrapper Require `from __future__ import annotations` (#81902) 8 months ago
win_fetch win_fetch - improve test time by not scanning Win dir (#81884) 8 months 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) 8 months ago
yum_repository Remove COMMAND_WARNINGS and warn (#77411) 2 years ago