Server IP : 85.214.239.14 / Your IP : 3.22.240.165 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/proc/2/task/2/root/proc/2/task/2/root/lib/python3/dist-packages/ansible_collections/community/vmware/ |
Upload File : |
# Testing Ansible Collection: community.vmware ### Testing with `ansible-test` Clone the collection and install it manually: ``` $ mkdir -p ~/.ansible/collections/ansible_collections/community $ git clone https://github.com/ansible-collections/community.vmware ~/.ansible/collections/ansible_collections/community/vmware $ cd ~/.ansible/collections/ansible_collections/community/vmware ``` If you want to test a PR, you can get it after cloning like this: ``` $ git fetch origin pull/ID/head:BRANCHNAME $ git checkout BRANCHNAME ``` Prepare VMware configuration file: ``` $ cat tests/integration/cloud-config-vcenter.ini [DEFAULT] vcenter_username: administrator@vsphere.local vcenter_password: mySuperSecretPassw0rd! vcenter_hostname: vcenter.test vmware_validate_certs: false esxi1_username: zuul esxi1_hostname: esxi1.test esxi1_password: myEsxiSuperSecretPassw0rd! ``` Run `ansible-test`: ``` $ VMWARE_TEST_PLATFORM=static ansible-test integration --diff --no-temp-workdir --python 3.7 -vvvv --requirements --allow-disabled vmware_guest_network ``` ## More Information * [Developer guide for testing](https://docs.ansible.com/ansible/latest/dev_guide/platforms/vmware_guidelines.html#testing-with-your-own-infrastructure)