diff --git a/test/integration/targets/ansible-galaxy-collection/tasks/fail_fast_resolvelib.yml b/test/integration/targets/ansible-galaxy-collection/tasks/fail_fast_resolvelib.yml index f0c94629f10..30835522f47 100644 --- a/test/integration/targets/ansible-galaxy-collection/tasks/fail_fast_resolvelib.yml +++ b/test/integration/targets/ansible-galaxy-collection/tasks/fail_fast_resolvelib.yml @@ -37,6 +37,9 @@ that: - incompatible.failed - not incompatible.msg.startswith("The command action failed to execute in the expected time frame") + - '"Failed to resolve the requested dependencies map" in incompatible.stderr' + - '"* namespace1.name1:1.0.9 (direct request)" in incompatible.stderr' + - '"* namespace1.name1:0.0.5 (dependency of ns.coll:1.0.0)" in incompatible.stderr' always: - name: cleanup resolvelib test diff --git a/test/integration/targets/ansible-galaxy-collection/tasks/supported_resolvelib.yml b/test/integration/targets/ansible-galaxy-collection/tasks/supported_resolvelib.yml index bff3689275a..47982184f04 100644 --- a/test/integration/targets/ansible-galaxy-collection/tasks/supported_resolvelib.yml +++ b/test/integration/targets/ansible-galaxy-collection/tasks/supported_resolvelib.yml @@ -1,6 +1,7 @@ - vars: venv_cmd: "{{ ansible_python_interpreter ~ ' -m venv' }}" venv_dest: "{{ galaxy_dir }}/test_venv_{{ resolvelib_version }}" + test_name: galaxy_ng block: - name: install another version of resolvelib that is supported by ansible-galaxy pip: @@ -20,7 +21,6 @@ - include_tasks: install.yml vars: - test_name: galaxy_ng test_id: '{{ test_name }} (resolvelib {{ resolvelib_version }})' test_server: '{{ galaxy_ng_server }}' test_api_server: '{{ galaxy_ng_server }}'