bring in purepath and fix an assertion
This commit is contained in:
parent
8e00280fc1
commit
66a690928c
|
@ -26,6 +26,7 @@ from _pytest.warning_types import (
|
||||||
RemovedInPytest4Warning,
|
RemovedInPytest4Warning,
|
||||||
PytestExperimentalApiWarning,
|
PytestExperimentalApiWarning,
|
||||||
)
|
)
|
||||||
|
from _pytest.compat import Path, PurePath
|
||||||
|
|
||||||
set_trace = __pytestPDB.set_trace
|
set_trace = __pytestPDB.set_trace
|
||||||
|
|
||||||
|
@ -67,6 +68,8 @@ __all__ = [
|
||||||
"warns",
|
"warns",
|
||||||
"xfail",
|
"xfail",
|
||||||
"yield_fixture",
|
"yield_fixture",
|
||||||
|
"Path",
|
||||||
|
"PurePath",
|
||||||
]
|
]
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
@ -111,7 +111,7 @@ def test_tmpdir_factory(testdir):
|
||||||
def session_dir(tmpdir_factory):
|
def session_dir(tmpdir_factory):
|
||||||
return tmpdir_factory.mktemp('data', numbered=False)
|
return tmpdir_factory.mktemp('data', numbered=False)
|
||||||
def test_some(session_dir):
|
def test_some(session_dir):
|
||||||
session_dir.isdir()
|
assert session_dir.isdir()
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
reprec = testdir.inline_run()
|
reprec = testdir.inline_run()
|
||||||
|
|
Loading…
Reference in New Issue