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
Adrian Likins 297dfb1d50 Vault secrets script client inc new 'keyring' client (#27669)
This adds a new type of vault-password script  (a 'client') that takes advantage of and enhances the 
multiple vault password support.

If a vault password script basename ends with the name '-client', consider it a vault password script client. 

A vault password script 'client' just means that the script will take a '--vault-id' command line arg.

The previous vault password script (as invoked by --vault-password-file pointing to an executable) takes
no args and returns the password on stdout. But it doesnt know anything about --vault-id or multiple vault
passwords.

The new 'protocol' of the vault password script takes a cli arg ('--vault-id') so that it can lookup that specific
vault-id and return it's password.

Since existing vault password scripts don't know the new 'protocol', a way to distinguish password scripts
that do understand the protocol was needed.  The convention now is to consider password scripts that are
named like 'something-client.py' (and executable) to be vault password client scripts.

The new client scripts get invoked with the '--vault-id' they were requested for. An example:

     ansible-playbook --vault-id my_vault_id@contrib/vault/vault-keyring-client.py some_playbook.yml

That will cause the 'contrib/vault/vault-keyring-client.py' script to be invoked as:

     contrib/vault/vault-keyring-client.py --vault-id my_vault_id

The previous vault-keyring.py password script was extended to become vault-keyring-client.py. It uses
the python 'keyring' module to request secrets from various backends. The plain 'vault-keyring.py' script
would determine which key id and keyring name to use based on values that had to be set in ansible.cfg.
So it was also limited to one keyring name.

The new vault-keyring-client.py will request the secret for the vault id provided via the '--vault-id' option.
The script can be used without config and can be used for multiple keyring ids (and keyrings).

On success, a vault password client script will print the password to stdout and exit with a return code of 0.
If the 'client' script can't find a secret for the --vault-id, the script will exit with return code of 2 and print an error to stderr.
7 years ago
..
aci_filter aci_filter: Integration tests (#28256) 7 years ago
aci_rest aci_rest: More tests related to input types 7 years ago
aci_tenant Small improvements to aci_tenant tests (#28685) 7 years ago
add_host Initial ansible-test implementation. (#18556) 8 years ago
alternatives alternatives: test that path parameter is checked 7 years ago
ansible Miscellaneous bug fixes for ansible-test. 7 years ago
apache2_module Add workaround for evasive in apache2_module (#22649) 8 years ago
apt Use apt-get as fallback for apt upgrade 7 years ago
apt_key Disable skipped tests for remote platforms. (#26624) 7 years ago
apt_repository Disable skipped tests for remote platforms. (#26624) 7 years ago
archive Mark destructive tests as such. 7 years ago
args Initial ansible-test implementation. (#18556) 8 years ago
asa_acl Fix cosmetic problems in YAML source 8 years ago
asa_command Fix cosmetic problems in YAML source 8 years ago
asa_config Check for removal not allowed errors (#19251) 8 years ago
assemble Changed assemble_from_fragments to use os.path.join (#24909) 7 years ago
async test/: PEP8 compliancy (#24803) 7 years ago
async_extra_data Initial ansible-test implementation. (#18556) 8 years ago
at Mark destructive tests as such. 7 years ago
authorized_key Add comment option to authorized_key (#27781) 7 years ago
aws_api_gateway Split cloud tests into two CI groups. 7 years ago
aws_lambda lambda integration tests - test to show that environment config has an effect (#28815) 7 years ago
aws_s3 s3 integration tests (#28396) 7 years ago
azure_rm_acs Azure acs module (azure_rm_acs.py) (#28522) 7 years ago
azure_rm_availabilityset Split cloud tests into two CI groups. 7 years ago
azure_rm_availabilityset_facts Split cloud tests into two CI groups. 7 years ago
azure_rm_deployment Temporarily disable leaky test in CI. 7 years ago
azure_rm_dnsrecordset azure_rm_dnsrecordset rewrite (#30449) 7 years ago
azure_rm_dnsrecordset_facts azure_rm_dnsrecordset rewrite (#30449) 7 years ago
azure_rm_dnszone Split cloud tests into two CI groups. 7 years ago
azure_rm_dnszone_facts Split cloud tests into two CI groups. 7 years ago
azure_rm_functionapp Add support for Azure Functions (#28566) 7 years ago
azure_rm_loadbalancer Disable flakey azure_rm_loadbalancer test in CI. 7 years ago
azure_rm_managed_disk Split cloud tests into two CI groups. 7 years ago
azure_rm_publicipaddress Split cloud tests into two CI groups. 7 years ago
azure_rm_securitygroup Migrate more Azure integration tests. (#29034) 7 years ago
azure_rm_storageaccount Split cloud tests into two CI groups. 7 years ago
azure_rm_storageblob Clean up and migrate Azure tests. (#28103) 7 years ago
azure_rm_subnet Split cloud tests into two CI groups. 7 years ago
azure_rm_virtualmachine migrate azure_rm_vm tests to active (#30452) 7 years ago
azure_rm_virtualmachine_extension Split cloud tests into two CI groups. 7 years ago
azure_rm_virtualmachine_scaleset Split cloud tests into two CI groups. 7 years ago
azure_rm_virtualmachineimage_facts Migrate more Azure integration tests. (#29034) 7 years ago
azure_rm_virtualnetwork Split cloud tests into two CI groups. 7 years ago
become user: fix default non-system user's shell on macOS 7 years ago
binary Initial ansible-test implementation. (#18556) 8 years ago
binary_modules Fix cosmetic problems in YAML source 8 years ago
binary_modules_posix Initial ansible-test implementation. (#18556) 8 years ago
binary_modules_winrm Enable more Windows tests in CI. (#30443) 7 years ago
blockinfile Add integration test targets for core supported modules (#24217) 7 years ago
blocks Initial ansible-test implementation. (#18556) 8 years ago
callback_retry_task_name Fix 'task name is not templated in retry callback' (add task_name property to TaskResult) (#21214) 8 years ago
changed_when Initial ansible-test implementation. (#18556) 8 years ago
check_mode Initial ansible-test implementation. (#18556) 8 years ago
command_shell Command module bug fix, tests and cleanup. (#30432) 7 years ago
conditionals Reorganize integration tests: 7 years ago
connection Transition inventory into plugins (#23001) 7 years ago
connection_buildah Add support for `non_local` alias in ansible-test. 7 years ago
connection_chroot Initial ansible-test implementation. (#18556) 8 years ago
connection_docker Add support for `non_local` alias in ansible-test. 7 years ago
connection_jail Initial ansible-test implementation. (#18556) 8 years ago
connection_libvirt_lxc Initial ansible-test implementation. (#18556) 8 years ago
connection_local Initial ansible-test implementation. (#18556) 8 years ago
connection_lxc Initial ansible-test implementation. (#18556) 8 years ago
connection_lxd Add support for `non_local` alias in ansible-test. 7 years ago
connection_paramiko_ssh Initial ansible-test implementation. (#18556) 8 years ago
connection_posix Transition inventory into plugins (#23001) 7 years ago
connection_ssh Add pipeline-ish method using dd for file transfer over SSH (#18642) 8 years ago
connection_winrm Divide Windows integration tests into 2 groups. (#29029) 7 years ago
copy remove action plugin only fields from 'file' calls (#31047) 7 years ago
cs_account Split cloud tests into two CI groups. 7 years ago
cs_affinitygroup Split cloud tests into two CI groups. 7 years ago
cs_cluster Split cloud tests into two CI groups. 7 years ago
cs_common automated integration tests for cloudstack (#20552) 7 years ago
cs_configuration Split cloud tests into two CI groups. 7 years ago
cs_domain Split cloud tests into two CI groups. 7 years ago
cs_firewall Split cloud tests into two CI groups. 7 years ago
cs_host Split cloud tests into two CI groups. 7 years ago
cs_instance Split cloud tests into two CI groups. 7 years ago
cs_instance_facts Split cloud tests into two CI groups. 7 years ago
cs_instance_nic Split cloud tests into two CI groups. 7 years ago
cs_instance_nic_secondaryip Split cloud tests into two CI groups. 7 years ago
cs_instancegroup Split cloud tests into two CI groups. 7 years ago
cs_iso Split cloud tests into two CI groups. 7 years ago
cs_loadbalancer_rule Split cloud tests into two CI groups. 7 years ago
cs_network_acl Split cloud tests into two CI groups. 7 years ago
cs_network_acl_rule Split cloud tests into two CI groups. 7 years ago
cs_pod Split cloud tests into two CI groups. 7 years ago
cs_portforward Split cloud tests into two CI groups. 7 years ago
cs_project Split cloud tests into two CI groups. 7 years ago
cs_region Split cloud tests into two CI groups. 7 years ago
cs_resourcelimit Split cloud tests into two CI groups. 7 years ago
cs_role Split cloud tests into two CI groups. 7 years ago
cs_router Split cloud tests into two CI groups. 7 years ago
cs_securitygroup Split cloud tests into two CI groups. 7 years ago
cs_securitygroup_rule Split cloud tests into two CI groups. 7 years ago
cs_snapshot_policy tests: cs_snapshot_policy: add integration tests 7 years ago
cs_sshkeypair Split cloud tests into two CI groups. 7 years ago
cs_storage_pool Split cloud tests into two CI groups. 7 years ago
cs_user Split cloud tests into two CI groups. 7 years ago
cs_vmsnapshot Split cloud tests into two CI groups. 7 years ago
cs_volume Split cloud tests into two CI groups. 7 years ago
cs_vpc Split cloud tests into two CI groups. 7 years ago
cs_vpn_gateway Split cloud tests into two CI groups. 7 years ago
cs_zone Split cloud tests into two CI groups. 7 years ago
cs_zone_facts fix cs_zone_facts tests, namespace feature removed (#29184) 7 years ago
debconf Add integration test targets for core supported modules (#24217) 7 years ago
delegate_to Add check for known_hosts changing during tests. (#26470) 7 years ago
dellos6_command Fix cosmetic problems in YAML source 8 years ago
dellos6_config Use inventory_hostname_short (#20054) 8 years ago
dellos6_facts Fix cosmetic problems in YAML source 8 years ago
dellos9_command Fix cosmetic problems in YAML source 8 years ago
dellos9_config Use inventory_hostname_short (#20054) 8 years ago
dellos9_facts Fix cosmetic problems in YAML source 8 years ago
dellos10_command Fix cosmetic problems in YAML source 8 years ago
dellos10_config Use inventory_hostname_short (#20054) 8 years ago
dellos10_facts Fix cosmetic problems in YAML source 8 years ago
deploy_helper Fix deploy_helper integration tests. 8 years ago
dnf dnf: add environment upgrade test 7 years ago
docker Initial ansible-test implementation. (#18556) 8 years ago
docker_secret Mark destructive tests as such. 7 years ago
dpkg_selections Disable failing dpkg_selections test. 7 years ago
ec2_ami Fix ec2_snapshot_facts for python3 7 years ago
ec2_elb_lb Split ec2_elb_* modules in service of rename/interface changes (#30532) 7 years ago
ec2_group Split cloud tests into two CI groups. 7 years ago
ec2_key Split cloud tests into two CI groups. 7 years ago
ec2_metadata_facts Split cloud tests into two CI groups. 7 years ago
ec2_tag Split cloud tests into two CI groups. 7 years ago
ec2_vol Split cloud tests into two CI groups. 7 years ago
ec2_vpc Split cloud tests into two CI groups. 7 years ago
ecs_ecr Split cloud tests into two CI groups. 7 years ago
elb_classic_lb Split ec2_elb_* modules in service of rename/interface changes (#30532) 7 years ago
embedded_module Initial ansible-test implementation. (#18556) 8 years ago
environment added test emulating #23180 use case 8 years ago
eos_banner Add missing provider on disable eapi tasks (#26928) 7 years ago
eos_command Add missing provider on disable eapi tasks (#26928) 7 years ago
eos_config remove replace config test (#27953) 7 years ago
eos_eapi fixes eos_eapi to error on wrong transport (#21993) 8 years ago
eos_facts Add missing provider on disable eapi tasks (#26928) 7 years ago
eos_logging eos_logging implementation module (#27093) 7 years ago
eos_system Add missing provider on disable eapi tasks (#26928) 7 years ago
eos_user module should fail if eos_user is added without configured_password or nopassword or sshkey (#28780) 7 years ago
eos_vlan WIP Implement declarative intent arguments on eos_vlan (#28270) 7 years ago
eos_vrf Implement purge on eos_vrf (#28013) 7 years ago
expect Improve coverage of expect integration tests. (#30608) 7 years ago
facts_d Facts Refresh (2.4 roadmap) (#23012) 7 years ago
failed_when Ensure exit_json returns failed = False 7 years ago
fetch fetch: fail if flat=yes and dest=existing-dir w/o trailing slash 7 years ago
file Add more tests for copy/file/template with harlinks 7 years ago
filters Reorganize integration tests: 7 years ago
find Add integration test targets for core supported modules (#24217) 7 years ago
fortios_address Mark destructive tests as such. 7 years ago
fortios_ipv4_policy Mark destructive tests as such. 7 years ago
gathering_facts Fix fact failures cause by ordering of collectors (#30777) 7 years ago
gem Initial ansible-test implementation. (#18556) 8 years ago
get_url Fix github_issue test and enable in CI. 7 years ago
getent Add integration test targets for core supported modules (#24217) 7 years ago
git Correct usage for shutil.rmtree (#31541) 7 years ago
github_issue Fix github_issue test and enable in CI. 7 years ago
group Add integration test targets for core supported modules (#24217) 7 years ago
group_by add support of nested groups in group_by 7 years ago
groupby_filter Improve jinja2 test coverage. (#20533) 8 years ago
handlers include_role handlers bug fix (#26335) 7 years ago
hash Reorganize integration tests: 7 years ago
hg Correct usage of fail_json in hg module (#25847) 7 years ago
hosts_field Initial ansible-test implementation. (#18556) 8 years ago
ignore_errors Initial ansible-test implementation. (#18556) 8 years ago
include_vars Provide the list of files that were included by include_vars 7 years ago
includes fix searched paths in DataLoader.path_dwim_relative (avoid AnsibleFileNotFound) (#26729) 7 years ago
ini_file ini_file: add integration test (#24434) 7 years ago
ios_banner Remove provider from ios integration test (#31037) 7 years ago
ios_command Remove provider from ios integration test (#31037) 7 years ago
ios_config Remove provider from ios integration test (#31037) 7 years ago
ios_facts Remove provider from ios integration test (#31037) 7 years ago
ios_interface fix ios_interface test unsupported param (#31622) 7 years ago
ios_logging Remove provider from ios integration test (#31037) 7 years ago
ios_ping Remove duped authorize on ios_ping anchored tasks (#31572) 7 years ago
ios_static_route Remove provider from ios integration test (#31037) 7 years ago
ios_system Remove provider from ios integration test (#31037) 7 years ago
ios_user Parameterize the ssh port on ios_user tests (#31573) 7 years ago
iosxr_banner Remove provider lines from iosxr tests (#29956) 7 years ago
iosxr_command Run vyos_command Network tests in Shippable (#24514) 7 years ago
iosxr_config added lines to mode: strict (#27442) 7 years ago
iosxr_facts Run vyos_command Network tests in Shippable (#24514) 7 years ago
iosxr_interface Remove provider lines from iosxr tests (#29956) 7 years ago
iosxr_logging Remove provider lines from iosxr tests (#29956) 7 years ago
iosxr_system Remove provider lines from iosxr tests (#29956) 7 years ago
iosxr_user Remove provider lines from iosxr tests (#29956) 7 years ago
ipify_facts Add testcase for ipify_facts (#26421) 7 years ago
iso_extract Mark destructive tests as such. 7 years ago
iterators correct, cleanup & simplify dwim stack (#25956) 7 years ago
java_cert java_cert role pkcs12 import (#24616) 7 years ago
junos_banner Add dependency to run junos integration test (#27620) 7 years ago
junos_command Fix asserts of junos_command netconf_json notequal and lessthanorequal (#27818) 7 years ago
junos_config Fix rollback in junos_config (#31424) 7 years ago
junos_facts Add dependency to run junos integration test (#27620) 7 years ago
junos_interface Add common aggregate arguments for junos modules (#28124) 7 years ago
junos_l3_interface Add common aggregate arguments for junos modules (#28124) 7 years ago
junos_linkagg Remove default description in network DI modules (#28411) 7 years ago
junos_lldp Change tx delay to 2 on the rest of junos_lldp tests (#27753) 7 years ago
junos_lldp_interface junos lldp interface test fix (#27946) 7 years ago
junos_logging Add common aggregate arguments for junos modules (#28124) 7 years ago
junos_netconf Increase pause time in junos integration test (#30740) 7 years ago
junos_rpc Add dependency to run junos integration test (#27620) 7 years ago
junos_static_route Add common aggregate arguments for junos modules (#28124) 7 years ago
junos_system Add dependency to run junos integration test (#27620) 7 years ago
junos_user Fix junos_user purge option failures (#28867) 7 years ago
junos_vlan Fix junos_vlan integration test failure (#28613) 7 years ago
junos_vrf Fix junos_vrf integration test failure in DCI (#28428) 7 years ago
known_hosts known_hosts: support --diff (#20349) 8 years ago
lambda_policy Reorganize integration tests: 7 years ago
lineinfile Initial ansible-test implementation. (#18556) 8 years ago
locale_gen Fix locale_gen to compare native strings rather than mixing byte and text strings 8 years ago
lookup_passwordstore Mark destructive tests as such. 7 years ago
lookup_paths Fix regression in search path behaviour 8 years ago
lookup_properties Revert "Revert "Allow ini plugin to load file using other encoding than utf8." (#27407)" 7 years ago
lookups Fix github_issue test and enable in CI. 7 years ago
loops Initial ansible-test implementation. (#18556) 8 years ago
module_precedence metadata 1.1 7 years ago
module_utils Disable pylint check for names existing in modules for test data 7 years ago
mount Initial ansible-test implementation. (#18556) 8 years ago
mysql_db Use stronger password for MySQL (#25821) 7 years ago
mysql_user MySQL Password updates (#25825) 7 years ago
mysql_variables MySQL Password updates (#25825) 7 years ago
net_banner Add active param to junos declarative modules (#26222) 7 years ago
net_interface Remove default description in network DI modules (#28411) 7 years ago
net_l3_interface Add common aggregate arguments for junos modules (#28124) 7 years ago
net_linkagg Remove default description in network DI modules (#28411) 7 years ago
net_lldp net_lldp_interface module implementation for junos (#26915) 7 years ago
net_lldp_interface junos lldp interface test fix (#27946) 7 years ago
net_logging Add common aggregate arguments for junos modules (#28124) 7 years ago
net_static_route Add aggregate for junos modules and sub spec validation (#27726) 7 years ago
net_system Add active param to junos declarative modules (#26222) 7 years ago
net_user Add aggregate for junos modules and sub spec validation (#27726) 7 years ago
net_vlan Add common aggregate arguments for junos modules (#28124) 7 years ago
net_vrf Fix junos_vrf integration test failure in DCI (#28428) 7 years ago
no_log Initial ansible-test implementation. (#18556) 8 years ago
nuage_vspk Fix integration test aliases. 7 years ago
nxos_acl change ports to non well known ports and drop time_range for N1 (#31261) 7 years ago
nxos_acl_interface Stop toggling nxapi (#28532) 7 years ago
nxos_banner Stop toggling nxapi (#28532) 7 years ago
nxos_bgp Stop toggling nxapi (#28532) 7 years ago
nxos_bgp_af Stop toggling nxapi (#28532) 7 years ago
nxos_bgp_neighbor Stop toggling nxapi (#28532) 7 years ago
nxos_bgp_neighbor_af Stop toggling nxapi (#28532) 7 years ago
nxos_command Stop toggling nxapi (#28532) 7 years ago
nxos_config Stop toggling nxapi (#28532) 7 years ago
nxos_evpn_global Stop toggling nxapi (#28532) 7 years ago
nxos_evpn_vni Stop toggling nxapi (#28532) 7 years ago
nxos_facts Stop toggling nxapi (#28532) 7 years ago
nxos_feature Stop toggling nxapi (#28532) 7 years ago
nxos_igmp Stop toggling nxapi (#28532) 7 years ago
nxos_interface Stop toggling nxapi (#28532) 7 years ago
nxos_interface_ospf Stop toggling nxapi (#28532) 7 years ago
nxos_ip_interface Stop toggling nxapi (#28532) 7 years ago
nxos_logging Stop toggling nxapi (#28532) 7 years ago
nxos_mtu Stop toggling nxapi (#28532) 7 years ago
nxos_ntp Stop toggling nxapi (#28532) 7 years ago
nxos_nxapi Stop toggling nxapi (#28532) 7 years ago
nxos_ospf Stop toggling nxapi (#28532) 7 years ago
nxos_ospf_vrf Stop toggling nxapi (#28532) 7 years ago
nxos_overlay_global Stop toggling nxapi (#28532) 7 years ago
nxos_pim_interface Stop toggling nxapi (#28532) 7 years ago
nxos_pim_rp_address Stop toggling nxapi (#28532) 7 years ago
nxos_portchannel Stop toggling nxapi (#28532) 7 years ago
nxos_rollback Stop toggling nxapi (#28532) 7 years ago
nxos_snmp_community Stop toggling nxapi (#28532) 7 years ago
nxos_switchport Stop toggling nxapi (#28532) 7 years ago
nxos_system Stop toggling nxapi (#28532) 7 years ago
nxos_user Stop toggling nxapi (#28532) 7 years ago
nxos_vlan Stop toggling nxapi (#28532) 7 years ago
nxos_vpc Stop toggling nxapi (#28532) 7 years ago
nxos_vpc_interface Stop toggling nxapi (#28532) 7 years ago
nxos_vrf Stop toggling nxapi (#28532) 7 years ago
nxos_vrf_af Stop toggling nxapi (#28532) 7 years ago
nxos_vrf_interface Stop toggling nxapi (#28532) 7 years ago
nxos_vrrp Stop toggling nxapi (#28532) 7 years ago
nxos_vtp_domain Stop toggling nxapi (#28532) 7 years ago
nxos_vtp_password Stop toggling nxapi (#28532) 7 years ago
nxos_vtp_version Stop toggling nxapi (#28532) 7 years ago
nxos_vxlan_vtep Stop toggling nxapi (#28532) 7 years ago
openssl_certificate openssl: remove static dict for keyUsage (#30339) 7 years ago
openssl_csr openssl: remove static dict for keyUsage (#30339) 7 years ago
openssl_privatekey Mark destructive tests as such. 7 years ago
openssl_publickey Mark destructive tests as such. 7 years ago
openvswitch_db Revert "Use needs/root, rather than become: yes" (#27483) 7 years ago
package Mark destructive tests as such. 7 years ago
parsing Fix spelling mistakes (comments only) (#25564) 7 years ago
ping Move ping and win_ping closer together (#26028) 7 years ago
pip pip: Use chdir directive in the venv path (fixes #25122) (#26865) 7 years ago
postgresql postgres_db: add dump and restore support (#20627) 7 years ago
prepare_eos_tests/tasks fix eos failed tests (#27945) 7 years ago
prepare_http_tests Urls client cert auth (#18141) 8 years ago
prepare_ios_tests Remove provider from prepare_ios_tests integration test (#31038) 7 years ago
prepare_iosxr_tests Remove provider lines from iosxr tests (#29956) 7 years ago
prepare_junos_tests/tasks Remove provider from prepare junos test intergration setup (#28961) 7 years ago
prepare_nuage_tests/tasks New module: management of the Nuage Networks VSP SDN solution (network/nuage/nuage_vspk) (#24895) 7 years ago
prepare_nxos_tests/tasks Stop toggling nxapi (#28532) 7 years ago
prepare_ovs_tests/tasks Revert "Use needs/root, rather than become: yes" (#27483) 7 years ago
prepare_tests/tasks Migrate Linux CI roles to test targets. (#17997) 8 years ago
prepare_win_tests Fix cosmetic problems in YAML source 8 years ago
pull Transition inventory into plugins (#23001) 7 years ago
raw Add integration test targets for core supported modules (#24217) 7 years ago
rds_param_group Split cloud tests into two CI groups. 7 years ago
rpm_key Try to cleanup after the rpm_key test 7 years ago
script moved to exceptions for basic skip/fails 8 years ago
sefcontext Added tests for sefcontext module 8 years ago
selinux Correctly write SELinux config file (#31251) 7 years ago
sensu_client Add a sensu_client module 7 years ago
sensu_handler Add sensu_handler Ansible module 7 years ago
service Associate `systemd` module with `service` test. (#22847) 8 years ago
set_fact Add set_fact_persistent action and module. (#26153) 7 years ago
setup_azure/tasks Remove cryptography version limit in Azure tests. 7 years ago
setup_ec2 Reorganize integration tests: 7 years ago
setup_mysql_db Add Fedora Python 3 Docker images and fix tests. (#27794) 7 years ago
setup_openssl Extend test coverage for openssl modules (#27548) 7 years ago
setup_postgresql_db Add Fedora Python 3 Docker images and fix tests. (#27794) 7 years ago
setup_sshkey/tasks Enable cloud tests for use with ansible-test. 7 years ago
slurp Test the slurp module 8 years ago
special_vars Initial ansible-test implementation. (#18556) 8 years ago
stat Initial ansible-test implementation. (#18556) 8 years ago
subversion Initial ansible-test implementation. (#18556) 8 years ago
synchronize Initial ansible-test implementation. (#18556) 8 years ago
sysctl Remove sysctl entries when state=absent (#31486) 7 years ago
systemd Add integration test targets for core supported modules (#24217) 7 years ago
tags Initial ansible-test implementation. (#18556) 8 years ago
task_ordering Initial ansible-test implementation. (#18556) 8 years ago
template Add more tests for copy/file/template with harlinks 7 years ago
template_jinja2_latest Improve jinja2 test coverage. (#20533) 8 years ago
templating_settings Initial ansible-test implementation. (#18556) 8 years ago
test_infra Initial ansible-test implementation. (#18556) 8 years ago
unarchive Mark destructive tests as such. 7 years ago
unicode Initial ansible-test implementation. (#18556) 8 years ago
until Initial ansible-test implementation. (#18556) 8 years ago
uri Fix github_issue test and enable in CI. 7 years ago
user modules/system/user.py: Change createhome to create_home (#30179) 7 years ago
var_blending Reorganize integration tests: 7 years ago
var_precedence Reorganize integration tests: 7 years ago
vault Vault secrets script client inc new 'keyring' client (#27669) 7 years ago
vcenter_license Split cloud tests into two CI groups. 7 years ago
vmware_cluster Only install pyvmomi if user is root (#31628) 7 years ago
vmware_datacenter Only install pyvmomi if user is root (#31628) 7 years ago
vmware_dvswitch Only install pyvmomi if user is root (#31628) 7 years ago
vmware_guest Fix #21112 : Adding support for configuring a CD-rom iso image (#28155) 7 years ago
vmware_guest_facts Only install pyvmomi if user is root (#31628) 7 years ago
vmware_guest_find Only install pyvmomi if user is root (#31628) 7 years ago
vmware_guest_powerstate New module - vmware_guest_powerstate 7 years ago
vmware_guest_tools_wait Only install pyvmomi if user is root (#31628) 7 years ago
vmware_host Only install pyvmomi if user is root (#31628) 7 years ago
vmware_maintenancemode Only install pyvmomi if user is root (#31628) 7 years ago
vmware_resource_pool Only install pyvmomi if user is root (#31628) 7 years ago
vmware_vm_facts Only install pyvmomi if user is root (#31628) 7 years ago
vmware_vswitch Only install pyvmomi if user is root (#31628) 7 years ago
vyos_banner Remove provider cli for vyos tests (#30275) 7 years ago
vyos_command Remove provider cli for vyos tests (#30275) 7 years ago
vyos_config Remove provider cli for vyos tests (#30275) 7 years ago
vyos_facts Remove vyos_facts neighbors integration tests (#27957) 7 years ago
vyos_interface Remove provider cli for vyos tests (#30275) 7 years ago
vyos_l3_interface Add vyos_l3_interface module (#26610) 7 years ago
vyos_linkagg Handle common argument in aggregate parameter for vyos module (#28182) 7 years ago
vyos_lldp Add vyos_lldp and vyos_lldp_interface modules (#26753) 7 years ago
vyos_lldp_interface Handle common argument in aggregate parameter for vyos module (#28182) 7 years ago
vyos_logging Remove provider cli for vyos tests (#30275) 7 years ago
vyos_static_route Remove provider cli for vyos tests (#30275) 7 years ago
vyos_user Remove provider cli for vyos tests (#30275) 7 years ago
wait_for Fix wait_for with newer versions of psutil. (#26455) 7 years ago
wait_for_connection wait_for_connection: Wait for system to become reachable (#20011) 8 years ago
wakeonlan wakeonlan: Improve module coverage (#26655) 7 years ago
win_acl_inheritance Fix integration test aliases. 7 years ago
win_async_wrapper Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_become win_become: Added support to become a service user (#30407) 7 years ago
win_chocolatey Improve test reliability for win_chocolatey. (#30440) 7 years ago
win_command windows command changed to use CreateProcess (#30253) 7 years ago
win_copy win_copy: added decrypt option (#31291) 7 years ago
win_domain_group win_domain_group: new module (#26682) 7 years ago
win_domain_membership win_domain_membership: added better error handling and basic tests (#30674) 7 years ago
win_dotnet_ngen win_dotnet_ngen: fix after broken in 2.4 (#31076) 7 years ago
win_dsc Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_environment win_environment: Make this the Windows reference module 7 years ago
win_eventlog Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_eventlog_entry Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_feature Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_fetch Enable more Windows tests in CI. (#30443) 7 years ago
win_file Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_find win_find: fix for empty nested directories (#26164) 7 years ago
win_firewall win_firewall: check-mode support, integration tests (#25127) 7 years ago
win_firewall_rule minor updates + tests to win_firewall_rule as per jborean93 review (#29148) 7 years ago
win_get_url updated test not that module util checks the path is valid (#30321) 7 years ago
win_group Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_group_membership Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_hotfix Update Windows CI groups from 2 to 3. 7 years ago
win_iis_webapppool fix for webapppool when specifying an attribute that holds a collection (#30729) 7 years ago
win_lineinfile Update Windows CI groups from 2 to 3. 7 years ago
win_mapped_drive win_mapped_drive: new module (#27020) 7 years ago
win_module_utils CamelConverter - more fixes picked up in testing (#30601) 7 years ago
win_module_utils_legacy windows: fix list type in legacy module utils (#30483) 7 years ago
win_msg win_msg: added doc about msg limit and included an explicit check for better error handling (#31078) 7 years ago
win_msi Initial ansible-test implementation. (#18556) 8 years ago
win_owner Fix SID Lookup Issues on Assorted Windows Modules (#28979) 7 years ago
win_package win_package: rewrite, check mode, tests, more check options (#27470) 7 years ago
win_pagefile Adds win_pagefile module (#25605) 7 years ago
win_path Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_ping tag subset of Windows module tests for smoketest 7 years ago
win_power_plan Update Windows CI groups from 2 to 3. 7 years ago
win_psexec Enable more Windows tests in CI. (#30443) 7 years ago
win_psmodule Fix integration test aliases. 7 years ago
win_rabbitmq_plugin Update Windows CI groups from 2 to 3. 7 years ago
win_raw tag subset of Windows module tests for smoketest 7 years ago
win_reg_stat Fix spelling mistakes (comments only) (#25564) 7 years ago
win_regedit win_regedit: fixed up diff output to be more representative of type (#28974) 7 years ago
win_region Update Windows CI groups from 2 to 3. 7 years ago
win_regmerge Update Windows CI groups from 2 to 3. 7 years ago
win_route Update Windows CI groups from 2 to 3. 7 years ago
win_say Update Windows CI groups from 2 to 3. 7 years ago
win_scheduled_task win_scheduled_task_stat: add new module to get stat on scheduled tasks (#30602) 7 years ago
win_scheduled_task_stat win_scheduled_task_stat: add new module to get stat on scheduled tasks (#30602) 7 years ago
win_script tag subset of Windows module tests for smoketest 7 years ago
win_security_policy Update Windows CI groups from 2 to 3. 7 years ago
win_service Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_setup Update Windows CI groups from 2 to 3. 7 years ago
win_share Update Windows CI groups from 2 to 3. 7 years ago
win_shell Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_shortcut Update Windows CI groups from 2 to 3. 7 years ago
win_slurp Update Windows CI groups from 2 to 3. 7 years ago
win_stat Update Windows CI groups from 2 to 3. 7 years ago
win_tempfile Update Windows CI groups from 2 to 3. 7 years ago
win_template Divide Windows integration tests into 2 groups. (#29029) 7 years ago
win_timezone Update Windows CI groups from 2 to 3. 7 years ago
win_toast Update Windows CI groups from 2 to 3. 7 years ago
win_unzip Update Windows CI groups from 2 to 3. 7 years ago
win_user Update Windows CI groups from 2 to 3. 7 years ago
win_user_right Update Windows CI groups from 2 to 3. 7 years ago
win_wait_for win_wait_for: added module (#26556) 7 years ago
win_wakeonlan Update Windows CI groups from 2 to 3. 7 years ago
windows-paths tag subset of Windows module tests for smoketest 7 years ago
xattr Fix integration test aliases. 7 years ago
xml Mark destructive tests as such. 7 years ago
yum yum: add integration tests for installing from URL (#30616) 7 years ago
yum_repository Support list for baseurl and gpgkey params in yum_repository (fixes #24948) (#24967) 7 years ago
zypper Disable zypper* tests which are timing out. 7 years ago
zypper_repository Disable zypper* tests which are timing out. 7 years ago