File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ def test_require_collection_install(runtime_tmp: Runtime) -> None:
458
458
runtime_tmp .require_collection (name = "ansible.posix" , version = "1.5.4" , install = True )
459
459
runtime_tmp .load_collections ()
460
460
collection = runtime_tmp .collections ["ansible.posix" ]
461
- assert collection .version == "1.5.4"
461
+ assert Version ( collection .version ) >= Version ( "1.5.4" )
462
462
463
463
464
464
@pytest .mark .parametrize (
Original file line number Diff line number Diff line change @@ -10,14 +10,20 @@ envlist =
10
10
py39-ansible215
11
11
py310-ansible214
12
12
py310-ansible215
13
+ py310-ansible216
14
+ py310-ansible217
13
15
py311-ansible214
14
16
py311-ansible215
17
+ py311-ansible216
18
+ py311-ansible217
15
19
py312-ansible216
20
+ py312-ansible217
16
21
17
22
isolated_build = true
18
23
skip_missing_interpreters = True
19
24
requires =
20
25
tox >= 4.6.3
26
+ tox-extra >= 2.0.1
21
27
setuptools >= 65.3.0 # editable installs
22
28
23
29
[testenv]
You can’t perform that action at this time.
0 commit comments