Skip to content

Commit

Permalink
Add job for python 3.10 and pytest 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saimn committed Dec 7, 2021
1 parent 52bc21d commit 568a30c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ jobs:
- os: macos-latest
python-version: 3.8
toxenv: py38-test-pytestdev
- os: ubuntu-latest
python-version: '3.10'
toxenv: py310-test-pytest70
toxargs: --pre

steps:
- uses: actions/checkout@v2
Expand All @@ -56,7 +60,7 @@ jobs:
- name: Install Tox
run: python -m pip install tox
- name: Run Tox
run: tox -v -e ${{ matrix.toxenv }}
run: tox ${{ matrix.toxargs }} -v -e ${{ matrix.toxenv }}

# - name: Slack Notification
# uses: 8398a7/action-slack@v3
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Testing
Topic :: Utilities
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39}-test
py{37,38,39,310}-test
codestyle
requires =
setuptools >= 30.3.0
Expand All @@ -19,6 +19,7 @@ deps =
pytest60: pytest==6.0.*
pytest61: pytest==6.1.*
pytest62: pytest==6.2.*
pytest70: pytest==7.0.*
pytestdev: git+https://github.com/pytest-dev/pytest#egg=pytest

extras =
Expand Down

0 comments on commit 568a30c

Please sign in to comment.