summaryrefslogtreecommitdiff
path: root/test/integration/targets/ansible-galaxy-collection/vars/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-galaxy-collection/vars/main.yml')
-rw-r--r--test/integration/targets/ansible-galaxy-collection/vars/main.yml43
1 files changed, 42 insertions, 1 deletions
diff --git a/test/integration/targets/ansible-galaxy-collection/vars/main.yml b/test/integration/targets/ansible-galaxy-collection/vars/main.yml
index 175d6696..066d2678 100644
--- a/test/integration/targets/ansible-galaxy-collection/vars/main.yml
+++ b/test/integration/targets/ansible-galaxy-collection/vars/main.yml
@@ -9,17 +9,20 @@ supported_resolvelib_versions:
- "0.6.0"
- "0.7.0"
- "0.8.0"
+ - "0.9.0"
+ - "1.0.1"
unsupported_resolvelib_versions:
- "0.2.0" # Fails on import
- "0.5.1"
pulp_repositories:
- - published
+ - primary
- secondary
publish_namespaces:
- ansible_test
+ - secondary
collection_list:
# Scenario to test out pre-release being ignored unless explicitly set and version pagination.
@@ -162,3 +165,41 @@ collection_list:
name: parent
dependencies:
namespace1.name1: '*'
+
+ # non-prerelease is published to test that installing
+ # the pre-release from SCM doesn't accidentally prefer indirect
+ # dependencies from Galaxy
+ - namespace: test_prereleases
+ name: collection2
+ version: 1.0.0
+
+ - namespace: dev_and_stables_ns
+ name: dev_and_stables_name
+ version: 1.2.3-dev0
+ - namespace: dev_and_stables_ns
+ name: dev_and_stables_name
+ version: 1.2.4
+
+ - namespace: ns_with_wildcard_dep
+ name: name_with_wildcard_dep
+ version: 5.6.7-beta.3
+ dependencies:
+ dev_and_stables_ns.dev_and_stables_name: >-
+ *
+ - namespace: ns_with_dev_dep
+ name: name_with_dev_dep
+ version: 6.7.8
+ dependencies:
+ dev_and_stables_ns.dev_and_stables_name: 1.2.3-dev0
+
+ - namespace: rc_meta_ns_with_transitive_dev_dep
+ name: rc_meta_name_with_transitive_dev_dep
+ version: 2.4.5-rc5
+ dependencies:
+ ns_with_dev_dep.name_with_dev_dep: >-
+ *
+ - namespace: meta_ns_with_transitive_wildcard_dep
+ name: meta_name_with_transitive_wildcard_dep
+ version: 4.5.6
+ dependencies:
+ ns_with_wildcard_dep.name_with_wildcard_dep: 5.6.7-beta.3