This repository has been archived by the owner on Jun 12, 2020. It is now read-only.
forked from donat-b/ansible-restic
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
port changes from cloudalchemy repositories (#36)
- drop ansible 2.3 - test on ansible 2.7 - use tox - create a new [minor] release.
- Loading branch information
1 parent
fa25e18
commit 4fa3b46
Showing
3 changed files
with
32 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ansible-lint>=3.4.0 | ||
docker | ||
jmespath | ||
molecule>=2.15.0 | ||
pytest==3.9.3 | ||
testinfra>=1.7.0 |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[tox] | ||
minversion = 1.8 | ||
envlist = py{27}-ansible{25,26,27} | ||
skipsdist = true | ||
|
||
[travis:env] | ||
ANSIBLE= | ||
2.5: ansible25 | ||
2.6: ansible26 | ||
2.7: ansible27 | ||
|
||
[testenv] | ||
passenv = * | ||
deps = | ||
-rtest-requirements.txt | ||
ansible25: ansible<2.6 | ||
ansible26: ansible<2.7 | ||
ansible27: ansible<2.8 | ||
commands = | ||
{posargs:molecule test --all --destroy always} |