Skip to content

Commit c13bf15

Browse files
committed
TST: use modern path fixture instead of py.path one
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 08c2a58 commit c13bf15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ def disable_pip_version_check():
132132

133133

134134
@pytest.fixture(scope='session')
135-
def pep518_wheelhouse(tmpdir_factory):
136-
wheelhouse = tmpdir_factory.mktemp('wheelhouse')
135+
def pep518_wheelhouse(tmp_path_factory):
136+
wheelhouse = tmp_path_factory.mktemp('wheelhouse')
137137
meson_python = str(package_dir.parent.parent)
138138
# Populate wheelhouse with wheel for the following packages and
139139
# their dependencies. Wheels are downloaded from PyPI or built

0 commit comments

Comments
 (0)