This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch github_actions_take_2 in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 149321d662edf09613ee090f657b974b12b0fffb Author: Tomaz Muraus <[email protected]> AuthorDate: Sun Dec 13 13:59:18 2020 +0100 Update workflow, add Python 3.9 support to tox. --- .github/workflows/main.yml | 12 ++++++++++-- tox.ini | 3 ++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 64878ea..1102871 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,8 +33,16 @@ jobs: strategy: matrix: - python_version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3] - os: [ubuntu-latest] + fail-fast: false + python_version: + - 3.5, + - 3.6 + - 3.7 + - 3.8 + - 3.9 + - pypy3 + os: + - ubuntu-latest steps: - uses: actions/checkout@master diff --git a/tox.ini b/tox.ini index 3e00f55..f4dd146 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{pypy3.5,3.5,3.6,3.7,3.8},checks,lint,pylint,mypy,docs,coverage +envlist = py{pypy3.5,3.5,3.6,3.7,3.8,3.9},checks,lint,pylint,mypy,docs,coverage skipsdist = true [testenv] @@ -16,6 +16,7 @@ basepython = py3.6: python3.6 {py3.7,docs,checks,lint,pylint,mypy,coverage,docs,py3.7-dist,py3.7-dist-wheel}: python3.7 {py3.8,py3.8-windows}: python3.8 + {py3.9}: python3.9 setenv = CRYPTOGRAPHY_ALLOW_OPENSSL_102=1 commands = cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
