Skip to content

Commit 6575030

Browse files
committed
Central path as random string.
1 parent 72367e6 commit 6575030

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/tests_integration/test_gdrive_connection.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import builtins
22
import os
3+
import random
4+
import string
35
from pathlib import Path
46

57
import pytest
@@ -17,7 +19,7 @@ class TestGoogleDriveGithubCI(BaseTest):
1719
def transfer_project_info(self, tmp_path):
1820
""" """
1921
project = DataShuttle("transfer_project")
20-
central_path = Path(*tmp_path.parts[-2:]).as_posix()
22+
central_path = "".join(random.choices(string.digits, k=10))
2123

2224
return (project, central_path)
2325

0 commit comments

Comments
 (0)