From ce33b5fda8c76bcacc82c02c48d5007b0b56d5c6 Mon Sep 17 00:00:00 2001 From: David Tucker Date: Thu, 1 Feb 2024 23:01:33 -0800 Subject: [PATCH 1/2] Add a mypy version report header to the tests --- tests/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index 694d7d5..2306bcc 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1 +1,7 @@ +import mypy.version + pytest_plugins = "pytester" + + +def pytest_report_header(): + return f"mypy: {mypy.version.__version__}" From 291da1f32143adea330fce3ade1a5d08eef4b33d Mon Sep 17 00:00:00 2001 From: David Tucker Date: Mon, 5 Feb 2024 01:19:44 -0800 Subject: [PATCH 2/2] Set constrain_package_deps in tox.ini --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9f772f3..2d59c92 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -minversion = 3.20 +minversion = 4.4 isolated_build = true envlist = py37-pytest{4.6, 5.0, 5.x, 6.0, 6.x, 7.0, 7.x}-mypy{0.50, 0.x, 1.0, 1.x} @@ -22,6 +22,7 @@ python = 3.12: py312-pytest{6.2, 6.x, 7.0, 7.x, 8.0, 8.x}-mypy{0.90, 0.x, 1.0, 1.x} [testenv] +constrain_package_deps = true deps = pytest4.6: pytest ~= 4.6.0 pytest5.0: pytest ~= 5.0.0 @@ -54,6 +55,7 @@ testpaths = tests [testenv:publish] passenv = TWINE_* +constrain_package_deps = false deps = build[virtualenv] ~= 0.9.0 twine ~= 4.0.0