Miguel Grinberg
2 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
12 additions and
9 deletions
-
.github/workflows/tests.yml
-
tox.ini
|
|
@ -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 |
|
|
|
|
|
@ -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 |
|
|
|