Remove the 'issue' marker from test suite

It doesn't seem to add much value (why would one execute tests
based on that marker?), plus using the docstring for that
encourages one to write a more descriptive message about the test
This commit is contained in:
Bruno Oliveira
2019-04-27 11:25:37 -03:00
parent 685ca96c71
commit f1183c2422
10 changed files with 40 additions and 33 deletions

View File

@@ -58,8 +58,8 @@ class TestTempdirHandler(object):
assert tmp2.relto(t.getbasetemp()).startswith("this")
assert tmp2 != tmp
@pytest.mark.issue(4425)
def test_tmppath_relative_basetemp_absolute(self, tmp_path, monkeypatch):
"""#4425"""
from _pytest.tmpdir import TempPathFactory
monkeypatch.chdir(tmp_path)