created test file to test issue

This commit is contained in:
Kaylin Yeoh 2023-12-02 17:49:20 -05:00
parent fdb8bbf154
commit eb38e69e86
2 changed files with 7 additions and 1 deletions

View File

@ -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"]

View File

@ -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 == []