Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
toxenv: py312
- python: "3.13"
toxenv: py313
- python: "3.14"
toxenv: py314
- python: pypy-3.10
toxenv: pypy3
- python: 3.9
Expand All @@ -33,12 +35,14 @@ jobs:
toxenv: py312-pytest
- python: "3.13"
toxenv: py313-pytest
- python: "3.13"
toxenv: py313-failskip
- python: "3.13"
toxenv: py313-limit
- python: "3.13"
toxenv: py313-prefix
- python: "3.14"
toxenv: py314-pytest
- python: "3.14"
toxenv: py314-failskip
- python: "3.14"
toxenv: py314-limit
- python: "3.14"
toxenv: py314-prefix
name: ${{ matrix.toxenv }} on Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ looks like this::
See the docs_ for more details on the many features and formats for
setting request headers and bodies and evaluating responses.

Gabbi is tested with Python 3.9, 3.10, 3.11, 3.12, 3.13 and pypy3.10.
Gabbi is tested with Python 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 and pypy3.10.

Tests can be run using `unittest`_ style test runners, `pytest`_
or from the command line with a `gabbi-run`_ script.
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifier =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Software Development :: Testing
Expand Down
3 changes: 1 addition & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
mock ; python_version < '3.3'
stestr>4.0.0
stestr>4.0.0; platform_python_implementation == "CPython"
coverage
pytest-cov
hacking
Expand Down
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 3.1.1
skipsdist = True
envlist = pep8,py39,py310,py311,py312,py313,pypy3,pep8,limit,failskip,docs,py313-prefix,py313-limit,py313-verbosity,py313-failskip,py36-pytest,py39-pytest,py310-pytest,py311-pytest,py312-pytest,py313-pytest
envlist = pep8,py39,py310,py311,py312,py313,py314,pypy3,docs,py314-prefix,py314-limit,py314-verbosity,py314-failskip,py39-pytest,py310-pytest,py311-pytest,py312-pytest,py313-pytest,py314-pytest

[testenv]
deps = -r{toxinidir}/requirements.txt
Expand All @@ -19,9 +19,6 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = {posargs}

[testenv:py36-pytest]
commands = py.test gabbi

[testenv:py39-pytest]
commands = py.test gabbi

Expand All @@ -37,6 +34,9 @@ commands = py.test gabbi
[testenv:py313-pytest]
commands = py.test {posargs} gabbi

[testenv:py314-pytest]
commands = py.test {posargs} gabbi

[testenv:py313-prefix]
setenv = GABBI_PREFIX=/snoopy

Expand All @@ -46,15 +46,15 @@ deps = hacking
commands =
flake8

[testenv:py313-limit]
[testenv:py314-limit]
allowlist_externals = {toxinidir}/test-limit.sh
commands = {toxinidir}/test-limit.sh

[testenv:py313-verbosity]
[testenv:py314-verbosity]
allowlist_externals = {toxinidir}/test-verbosity.sh
commands = {toxinidir}/test-verbosity.sh

[testenv:py313-failskip]
[testenv:py314-failskip]
allowlist_externals = {toxinidir}/test-failskip.sh
commands = {toxinidir}/test-failskip.sh

Expand Down