Skip to content

Commit e92a8b7

Browse files
committed
convert py.path to string
1 parent 0d64f03 commit e92a8b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def data_dir(tmpdir_factory):
2424
A tmp folder will be created before running
2525
the tests and deleted at the end.
2626
"""
27-
fn = tmpdir_factory.mktemp('ArduinoTest')
28-
return fn
27+
return str(tmpdir_factory.mktemp('ArduinoTest'))
2928

3029

3130
@pytest.fixture(scope="session")

0 commit comments

Comments
 (0)