summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2022-09-05 16:45:59 +0200
committerGitHub <noreply@github.com>2022-09-05 16:45:59 +0200
commit3ca27cfed466afeb5a3fccd886ca7c25a7659b00 (patch)
treebfb8dc5ef5ad9de2b0234734d367f91699d73519
parent3d70055fcb8a52822a8717dc5534adcc087184c4 (diff)
downloadpystatsd-3ca27cfed466afeb5a3fccd886ca7c25a7659b00.tar.gz
Nose fails on Python 3.10+
-rw-r--r--.github/workflows/tox.yml17
1 files changed, 1 insertions, 16 deletions
diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml
index 4253222..35afafc 100644
--- a/.github/workflows/tox.yml
+++ b/.github/workflows/tox.yml
@@ -1,27 +1,12 @@
name: tox
on: [push, pull_request]
jobs:
- tox-jobs:
- strategy:
- fail-fast: false
- matrix:
- job: [lint, docs-lint, pycodestyle]
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-python@v4
- with:
- python-version: 3.x
- - run: pip install --upgrade pip
- - run: pip install tox
- - run: tox -e ${{ matrix.job }}
-
tox:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
- python: ['3.7', '3.8', '3.9', '3.10', '3.11-dev', 'pypy-3.9']
+ python: ['3.7', '3.8', '3.9', 'pypy-3.9'] # Nose fails on Python 3.10+
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3