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

Add ansible210 testing #888

Merged
merged 1 commit into from
Jul 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
run: |
python -m tox --parallel auto --parallel-live --notest -vv
env:
TOXENV: ansible28,ansible29,ansibledevel
TOXENV: ansible28,ansible29,ansible210,ansibledevel
- name: "Test with tox: ansible28"
run: |
python -m tox
Expand All @@ -169,6 +169,11 @@ jobs:
python -m tox
env:
TOXENV: ansible29
- name: "Test with tox: ansible210"
ssbarnea marked this conversation as resolved.
Show resolved Hide resolved
run: |
python -m tox
env:
TOXENV: ansible210
- name: "Test with tox: ansibledevel"
run: |
python -m tox
Expand Down
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.16.1
envlist = lint,py{38,37,36}-ansible{29,28,devel}
envlist = lint,py{38,37,36}-ansible{29,28,210,devel}
isolated_build = true
requires =
setuptools >= 41.4.0
Expand All @@ -15,10 +15,11 @@ description =
deps =
ansible28: ansible>=2.8,<2.9
ansible29: ansible>=2.9,<2.10
# TODO(ssbarnea): Replace replace the two tarbals created by @abadger1999 once
# we official (pre-)releases are available on pypi.org
ansibledevel: ansible-base @ https://toshio.fedorapeople.org/ansible/acd/ansible-base/ansible-base-2.10.0.dev1.tar.gz#egg=ansible-base
ansibledevel: ansible @ https://toshio.fedorapeople.org/ansible/acd/ansible/ansible-2.10.0.tar.gz#egg=ansible
ansible210: ansible>=2.10.0a1,<2.11
# Be sure we do not install old ansible from default deps
# https://github.com/ansible/ansible/issues/70705
ansibledevel: ansible>=2.10.0a1,<2.11
ssbarnea marked this conversation as resolved.
Show resolved Hide resolved
ansibledevel: ansible-base @ git+https://github.com/ansible/ansible.git
ruamel.yaml==0.16.5 # NOTE: 0.15.34 has issues with py37
flake8
pep8-naming
Expand Down