Skip to content

Commit

Permalink
fix collisions when running integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbelanger committed Jun 3, 2024
1 parent b474e21 commit 63519a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test_dropbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def dbx_share_url_from_env():

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

@pytest.fixture(scope='module')
def pytest_setup():
Expand Down

0 comments on commit 63519a0

Please sign in to comment.