Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop CentOS 8 testing, add Ansible 2.17 testing and fix issue installing Smallstep CLI packages > v0.27.2 #18

Merged
merged 9 commits into from
Nov 4, 2024
Prev Previous commit
Next Next commit
ci: include ansible 2.17 in tox test matrix
  • Loading branch information
trfore committed Nov 4, 2024
commit abe86dc36d39cfd6be0f77cb0df09cba9206ef27
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ minversion = 4.0.0
envlist =
lint
docs
py-ansible{2.15, 2.16}-{default,ssh}
py-ansible{2.16}-{default,ssh}-{centos, debian}
py-ansible{2.16}-{mult}
py-ansible{2.15, 2.16, 2.17}-{default,ssh}
py-ansible{2.16, 2.17}-{default,ssh}-{centos, debian}
py-ansible{2.17}-{multi}

[testenv]
description =
Expand All @@ -15,10 +15,11 @@ description =
centos-!default: Run molecule scenario on CentOS (step_ssh)
debian-!ssh: Run molecule scenario on Debian (default)
debian-!default: Run molecule scenario on Debian (default)
mult: Run molecule scenario to request multiple server certs (Ubuntu)
multi: Run molecule scenario to request multiple server certs (Ubuntu)
deps =
ansible2.15: ansible-core == 2.15.*
ansible2.16: ansible-core == 2.16.*
ansible2.17: ansible-core == 2.17.*
docker
jmespath
molecule
Expand All @@ -28,7 +29,7 @@ deps =
commands =
default: molecule {posargs:test -s default}
ssh: molecule {posargs:test -s step_ssh}
mult: molecule {posargs:test -s multiple_certs}
multi: molecule {posargs:test -s multiple_certs}
setenv =
ANSIBLE_COLLECTIONS_PATH={work_dir}/{env_name}/.ansible/collections/ansible_collections
MOLECULE_EPHEMERAL_DIRECTORY={work_dir}/{env_name}/.cache/molecule
Expand Down