From 772dafbd514a5e20c9ef17090fe9f7b0a847856a Mon Sep 17 00:00:00 2001 From: Atiqur Rahman Date: Thu, 30 Jul 2026 21:13:08 +0600 Subject: [PATCH 1/3] docs: update Python version examples and master branch link in tox.rst --- docs/tox.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tox.rst b/docs/tox.rst index e44de028..e3674a57 100644 --- a/docs/tox.rst +++ b/docs/tox.rst @@ -30,7 +30,7 @@ To prevent this problem you need to use ``--cov-append``. It's still recommended have consistent output. A ``tox.ini`` like this should be enough for sequential runs:: [tox] - envlist = clean,py27,py36,... + envlist = clean,py39,py312,... [testenv] commands = pytest --cov --cov-append --cov-report=term-missing ... @@ -46,7 +46,7 @@ have consistent output. A ``tox.ini`` like this should be enough for sequential For parallel runs we need to set some dependencies and have an extra report env like so:: [tox] - envlist = clean,py27,py36,report + envlist = clean,py39,py312,report [testenv] commands = pytest --cov --cov-append --cov-report=term-missing @@ -54,8 +54,8 @@ For parallel runs we need to set some dependencies and have an extra report env pytest pytest-cov depends = - {py27,py36}: clean - report: py27,py36 + {py39,py312}: clean + report: py39,py312 [testenv:report] deps = coverage @@ -70,4 +70,4 @@ For parallel runs we need to set some dependencies and have an extra report env commands = coverage erase Depending on your project layout you might need extra configuration, see the working examples at -https://github.com/pytest-dev/pytest-cov/tree/master/examples for two common layouts. +https://github.com/pytest-dev/pytest-cov/tree/main/examples for two common layouts. From 2910f7354c0c7793f2453a91a3b1c48fad93b2c7 Mon Sep 17 00:00:00 2001 From: Atiqur Rahman Date: Sat, 29 Aug 2026 21:58:48 +0600 Subject: [PATCH 2/3] ci: re-trigger GitHub Actions workflow From 7eff06dd1a97e6bfe4f77788edb676b7ee3420cd Mon Sep 17 00:00:00 2001 From: Atiqur Rahman Date: Mon, 31 Aug 2026 05:47:52 +0600 Subject: [PATCH 3/3] docs: fix broken example link in tox.rst to use master branch --- docs/tox.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tox.rst b/docs/tox.rst index e3674a57..ef93bdd5 100644 --- a/docs/tox.rst +++ b/docs/tox.rst @@ -70,4 +70,4 @@ For parallel runs we need to set some dependencies and have an extra report env commands = coverage erase Depending on your project layout you might need extra configuration, see the working examples at -https://github.com/pytest-dev/pytest-cov/tree/main/examples for two common layouts. +https://github.com/pytest-dev/pytest-cov/tree/master/examples for two common layouts.