diff --git a/pyproject.toml b/pyproject.toml index cdbdd3880..f72f393c0 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 = "2.0" +minversion = "0.0" addopts = "-rfEX -p pytester --strict-markers" python_files = ["test_*.py", "*_test.py", "testing/python/*.py"] python_classes = ["Test", "Acceptance"] diff --git a/testing/examples/test_issue10863.py b/testing/examples/test_issue10863.py new file mode 100644 index 000000000..337e8fa9c --- /dev/null +++ b/testing/examples/test_issue10863.py @@ -0,0 +1,6 @@ +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