From d34459b03182950a03f702beef90d52b339184cc Mon Sep 17 00:00:00 2001 From: Richard Megginson Date: Fri, 6 May 2022 08:30:29 -0600 Subject: [PATCH] [citest skip] bump tox-lsr version to 2.11.0; remove py37; add py310 (#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 --- .github/workflows/tox.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index ee198a2..46dace8 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -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 @@ -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 @@ -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