Skip to content

Commit 63519a0

Browse files
committed
fix collisions when running integration tests
1 parent b474e21 commit 63519a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/test_dropbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def dbx_share_url_from_env():
119119

120120
RANDOM_FOLDER = random.sample(string.ascii_letters, 15)
121121
TIMESTAMP = str(datetime.datetime.utcnow())
122-
STATIC_FILE = "/test.txt"
122+
STATIC_FILE = "/test_%s.txt" % ("".join(random.sample(string.ascii_letters, 15)), )
123123

124124
@pytest.fixture(scope='module')
125125
def pytest_setup():

0 commit comments

Comments
 (0)