Skip to content

Commit

Permalink
.github/workflows/tests-future.yml: complete matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio committed Oct 23, 2021
1 parent 6f900bb commit e76fc66
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 33 deletions.
47 changes: 14 additions & 33 deletions .github/workflows/tests-future.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,42 +12,23 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: &os [ubuntu-latest, windows-latest, macos-latest]
python-version: "3.10" # https://github.com/cython/cython/issues/4365
env:
TOXENV: future
#- os: windows-latest
#python-version: "3.10" # https://github.com/cython/cython/issues/4365
#env:
#TOXENV: future
#- os: macos-latest
#python-version: "3.10" # https://github.com/cython/cython/issues/4365
#env:
#TOXENV: future

#- os: ubuntu-latest
#python-version: "3.10" # https://github.com/cython/cython/issues/4365
#env:
#TOXENV: asyncio-future
#- os: windows-latest
#python-version: "3.10" # https://github.com/cython/cython/issues/4365
#env:
#TOXENV: asyncio-future
#- os: macos-latest
#python-version: "3.10" # https://github.com/cython/cython/issues/4365
#env:
#TOXENV: asyncio-future

#- python-version: pypy3
#env:
#TOXENV: pypy3-future
# extras
# extra-deps includes reppy, which does not support Python 3.9
# https://github.com/seomoz/reppy/issues/122
#- python-version: "3.8"
#env:
#TOXENV: extra-deps-future
#TOX_PIP_VERSION: 20.3.3
- os: *os
python-version: "3.10" # https://github.com/cython/cython/issues/4365
env:
TOXENV: asyncio-future
- os: *os
python-version: pypy3
env:
TOXENV: pypy3-future
- os: *os
python-version: "3.8" # https://github.com/seomoz/reppy/issues/122
env:
TOXENV: extra-deps-future
TOX_PIP_VERSION: 20.3.3
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
17 changes: 17 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,23 @@ deps =
git+https://github.com/python-pillow/Pillow.git#egg=Pillow
git+https://github.com/indygreg/python-zstandard.git#egg=zstandard; implementation_name != 'pypy'

[testenv:asyncio-future]
deps = {[testenv:future]deps}
commands = {[testenv:asyncio]commands}

[testenv:pypy3-future]
basepython = {[testenv:pypy3]basepython}
deps = {[testenv:future]deps}
commands = {[testenv:pypy3]commands}

[testenv:extra-deps-future]
deps =
{[testenv:future]deps}
git+https://github.com/boto/boto.git#egg=boto
git+https://github.com/seomoz/reppy.git#egg=reppy
git+https://github.com/rboulton/robotexclusionrulesparser.git#egg=robotexclusionrulesparser
commands = {[testenv:asyncio]commands}

[docs]
changedir = docs
deps =
Expand Down

0 comments on commit e76fc66

Please sign in to comment.