Skip to content

Commit

Permalink
[citest skip] bump tox-lsr version to 2.11.0; remove py37; add py310 (#…
Browse files Browse the repository at this point in the history
…103)

tox-lsr version 2.11.0 has support for collection-requirements.yml,
runqemu improvements, and support for python 3.10

python 3.7 is not used on any supported platform, so remove it

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm authored May 6, 2022
1 parent e7de3d8 commit d34459b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: tox
on: # yamllint disable-line rule:truthy
- pull_request
env:
TOX_LSR: "git+https://github.com/linux-system-roles/tox-lsr@2.10.1"
TOX_LSR: "git+https://github.com/linux-system-roles/tox-lsr@2.11.0"
LSR_ANSIBLE_TEST_DOCKER: "true"
LSR_ANSIBLES: 'ansible==2.9.*'
LSR_MSCENARIOS: default
Expand All @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ['2.7', '3.6', '3.7', '3.8', '3.9']
pyver: ['2.7', '3.6', '3.8', '3.9', '3.10']
steps:
- name: checkout PR
uses: actions/checkout@v2
Expand All @@ -38,8 +38,8 @@ jobs:
case "$toxpyver" in
27) toxenvs="${toxenvs},coveralls,flake8,pylint" ;;
36) toxenvs="${toxenvs},coveralls,black,yamllint,shellcheck" ;;
37) toxenvs="${toxenvs},coveralls" ;;
38) toxenvs="${toxenvs},coveralls,ansible-lint,ansible-plugin-scan,collection,ansible-test" ;;
39) toxenvs="${toxenvs},coveralls,ansible-managed-var-comment" ;;
310) toxenvs="${toxenvs},coveralls,custom" ;;
esac
TOXENV="$toxenvs" lsr_ci_runtox

0 comments on commit d34459b

Please sign in to comment.