From b8483dcb41eb498564b71f346677de83a8a9f011 Mon Sep 17 00:00:00 2001 From: Kaylin Yeoh Date: Mon, 4 Dec 2023 18:51:12 -0500 Subject: [PATCH 1/2] removed test file, no longer needed --- testing/examples/test_issue10863.py | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 testing/examples/test_issue10863.py diff --git a/testing/examples/test_issue10863.py b/testing/examples/test_issue10863.py deleted file mode 100644 index 337e8fa9c..000000000 --- a/testing/examples/test_issue10863.py +++ /dev/null @@ -1,6 +0,0 @@ -def test_(): - m = [ - "This is some dummy test which shows the strange way in which Pycharm" - " displays the full diff." - ] - assert m == [] \ No newline at end of file From d8c80eb35bfc59e2cf916b51a046e6f536bf93e1 Mon Sep 17 00:00:00 2001 From: Kaylin Yeoh Date: Thu, 7 Dec 2023 18:22:06 -0500 Subject: [PATCH 2/2] corrected minversion --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f72f393c0..cdbdd3880 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" write_to = "src/_pytest/_version.py" [tool.pytest.ini_options] -minversion = "0.0" +minversion = "2.0" addopts = "-rfEX -p pytester --strict-markers" python_files = ["test_*.py", "*_test.py", "testing/python/*.py"] python_classes = ["Test", "Acceptance"]