mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Update ansible-test sanity command. (#31958)
* Use correct pip version in ansible-test. * Add git fallback for validate-modules. * Run sanity tests in a docker container. * Use correct python version for sanity tests. * Pin docker completion images and add default. * Split pylint execution into multiple contexts. * Only test .py files in use-argspec-type-path test. * Accept identical python interpeter name or binary. * Switch cloud tests to default container. * Remove unused extras from pip install. * Filter out empty pip commands. * Don't force running of pip list. * Support delegation for windows and network tests. * Fix ansible-test python version usage. * Fix ansible-test python version skipping. * Use absolute path for log in ansible-test. * Run vyos_command test on python 3. * Fix windows/network instance persistence. * Add `test/cache` dir to classification. * Enable more python versions for network tests. * Fix cs_router test.
This commit is contained in:
parent
602a618e60
commit
cf1337ca9a
37 changed files with 788 additions and 456 deletions
|
@ -49,12 +49,8 @@
|
|||
- instance.name == "instance-vm"
|
||||
- instance.state == "Running"
|
||||
|
||||
- name: install jq
|
||||
package:
|
||||
name: jq
|
||||
|
||||
- name: setup find the routers name
|
||||
shell: cs listRouters listall=true networkid="{{ net.id }}" zone="{{ cs_common_zone_adv }}" | jq ".router[].name" | tr -d '"'
|
||||
shell: cs listRouters listall=true networkid="{{ net.id }}" zone="{{ cs_common_zone_adv }}"
|
||||
args:
|
||||
chdir: "{{ playbook_dir }}"
|
||||
register: router
|
||||
|
@ -63,7 +59,10 @@
|
|||
var: router.stdout
|
||||
|
||||
- set_fact:
|
||||
router_name: "{{ router.stdout }}"
|
||||
router_json: "{{ router.stdout | from_json }}"
|
||||
|
||||
- set_fact:
|
||||
router_name: "{{ router_json.router[0].name }}"
|
||||
|
||||
- name: test router started
|
||||
cs_router:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue