We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118ac57 commit 4cf2e79Copy full SHA for 4cf2e79
.github/requirements.txt
@@ -1,2 +1,3 @@
1
+pathlib ; python_version == '2.7'
2
pytest >=3.7.0
3
setuptools_scm
tests/test_09_examples_scope.py
@@ -27,7 +27,7 @@ def test_scope_module(ctestdir):
27
def test_scope_session(ctestdir):
28
"""Dependencies in session scope
29
"""
30
- subdir = Path(ctestdir.tmpdir) / "tests"
+ subdir = Path(str(ctestdir.tmpdir)) / "tests"
31
subdir.mkdir()
32
with get_example("scope_session_mod_01.py").open("rt") as sf:
33
with (subdir / "test_mod_01.py").open("wt") as df:
0 commit comments