We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44a95b1 commit 9a703b9Copy full SHA for 9a703b9
tests/custom/file_syncer/test_file_syncer.py
@@ -6,7 +6,7 @@
6
import pytest
7
8
from humanloop.error import HumanloopRuntimeError
9
-from humanloop.sync.file_syncer import SerializableFileType, FileSyncer
+from humanloop.sync.file_syncer import FileSyncer, SerializableFileType
10
11
12
@pytest.fixture
@@ -18,7 +18,7 @@ def mock_client() -> Mock:
18
def file_syncer(mock_client: Mock, tmp_path: Path) -> FileSyncer:
19
return FileSyncer(
20
client=mock_client,
21
- base_dir=tmp_path,
+ base_dir=str(tmp_path),
22
cache_size=10,
23
log_level=logging.DEBUG, # DEBUG level for testing # noqa: F821
24
)
0 commit comments