From 63519a048643e2f7af06492ffc891d1a53d76166 Mon Sep 17 00:00:00 2001 From: Max Belanger Date: Mon, 3 Jun 2024 17:12:24 +0300 Subject: [PATCH] fix collisions when running integration tests --- test/integration/test_dropbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_dropbox.py b/test/integration/test_dropbox.py index 4f1617f..e0feccd 100644 --- a/test/integration/test_dropbox.py +++ b/test/integration/test_dropbox.py @@ -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():