Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
22 changes: 4 additions & 18 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.x'

- name: Ensure latest pip
run: python -m pip install --upgrade pip
Expand Down Expand Up @@ -87,21 +87,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]
include:
- os: ubuntu-latest
python-version: "3.10"
with-coverage: true

- os: ubuntu-latest
python-version: 3.11-dev
tox-env: devel
- os: windows-latest
python-version: 3.11-dev
tox-env: devel
- os: macos-latest
python-version: 3.11-dev
tox-env: devel

steps:
- name: Set newline behavior
Expand Down Expand Up @@ -163,12 +154,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]
include:
- python-version: "3.10"
with-coverage: true
- python-version: 3.11-dev
tox-env: devel

steps:
- name: Set newline behavior
Expand Down Expand Up @@ -233,10 +222,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "pypy3.9"]
include:
- python-version: 3.11-dev
tox-env: devel
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]

steps:
- name: Set newline behavior
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "pytest-html"
description = "pytest plugin for generating HTML reports"
readme = "README.rst"
license = "MPL-2.0"
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = [
"pytest",
"html",
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = {3.8, 3.9, 3.10, 3.10-cov, pypy3.9}, docs, linting
envlist = {3.9, 3.10, 3.10-cov, 3.11, 3.12, 3.13, pypy3.9}, docs, linting
isolated_build = True

[testenv]
Expand Down Expand Up @@ -56,7 +56,3 @@ extend-ignore = E203

[pytest]
testpaths = testing
# TODO: Temporary hack until they fix
# https://github.com/pytest-dev/pytest/issues/6936
filterwarnings =
ignore:.*TerminalReporter.writer attribute is deprecated.*:pytest.PytestDeprecationWarning
Loading