From 772dafbd514a5e20c9ef17090fe9f7b0a847856a Mon Sep 17 00:00:00 2001 From: Atiqur Rahman Date: Thu, 30 Jul 2026 21:13:08 +0600 Subject: [PATCH] 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.