Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Remove tox-gh-actions #151

Merged
merged 1 commit into from
Sep 3, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
- name: Upgrade packaging tools
run: python -m pip install --upgrade pip setuptools virtualenv
- name: Install dependencies
run: python -m pip install --upgrade tox tox-gh-actions
run: python -m pip install --upgrade tox
- name: Run tox targets for ${{ matrix.python-version }}
run: python -m tox
run: |
ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}")
TOXENV=$(tox --listenvs | grep "^py$ENV_PREFIX" | tr '\n' ',') python -m tox
8 changes: 0 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@ envlist =
py{35,36,37,38,39}
py38-codestyle

[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38, py38-codestyle
3.9: py39

[testenv]
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m pytest {posargs}

Expand Down