Browse Source

Upgrade GitHub actions #nolog

pull/1176/head
Miguel Grinberg 2 years ago
parent
commit
14b9f4f360
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 19
      .github/workflows/tests.yml
  2. 2
      tox.ini

19
.github/workflows/tests.yml

@ -11,8 +11,8 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions
- run: tox -eflake8
@ -30,8 +30,8 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- run: python -m pip install --upgrade pip wheel
@ -41,9 +41,12 @@ jobs:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions codecov
- run: pip install tox tox-gh-actions
- run: tox
- run: codecov
- uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
fail_ci_if_error: true

2
tox.ini

@ -14,7 +14,7 @@ python =
[testenv]
commands=
pip install -e .
pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing
pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing --cov-report=xml
deps=
msgpack
pytest

Loading…
Cancel
Save