-
Notifications
You must be signed in to change notification settings - Fork 667
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch Ansible support model to N/N-1 (#2487)
Implements 2nd measure of lowering the support matrics based on feedback received from: https://www.reddit.com/r/ansible/comments/ekcbui/proposal_limiting_molecule_compatibility_with/ Next version is going to be a major version (3.0) which documents this major change.
- Loading branch information
Showing
9 changed files
with
14 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ minversion = 3.9.0 | |
envlist = | ||
lint | ||
check | ||
py{27,35,36,37}-ansible{27,28,29}-{functional,unit} | ||
py38-ansible{28,29}-{functional,unit} | ||
# keep only N,N-1 ansible versions | ||
py{27,35,36,37,38}-ansible{28,29}-{functional,unit} | ||
doc | ||
dockerfile | ||
skipdist = True | ||
|
@@ -26,7 +26,6 @@ setenv = | |
unit: PYTEST_ADDOPTS=molecule/test/unit/ --cov={toxinidir}/molecule/ --no-cov-on-fail {env:PYTEST_ADDOPTS:-n auto} | ||
functional: PYTEST_ADDOPTS=molecule/test/functional/ {env:PYTEST_ADDOPTS:} | ||
deps = | ||
ansible27: ansible>=2.7,<2.8 | ||
ansible28: ansible>=2.8,<2.9 | ||
ansible29: git+https://github.com/ansible/[email protected] | ||
# ^ after release change to ansible>=2.9,<2.10 | ||
|