From 884ed256f1e1c9b3b8c858e02d1106a88c6bd31b Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Tue, 17 Oct 2023 21:34:11 +0200 Subject: [PATCH] try posix path --- tests/core/test_e2e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/test_e2e.py b/tests/core/test_e2e.py index 6cc8c18e..44fab965 100644 --- a/tests/core/test_e2e.py +++ b/tests/core/test_e2e.py @@ -76,7 +76,7 @@ def wait_for_worker(): def test_file_system_queue(self, tmp_path, scheme): config = Config( local_cache_root=tmp_path, - rag=dict(queue_url=f"{scheme}{tmp_path / 'queue'}"), + rag=dict(queue_url=f"{scheme}{(tmp_path / 'queue').as_posix()}"), ) with self.worker(config=config):