Skip to content

Commit 6653cfd

Browse files
committed
fix(e2e): use unique name per run to avoid template name collision
1 parent aa3023a commit 6653cfd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/e2e/test_cpu_smoke.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
import os
77
import pickle
88
import subprocess
9+
import uuid
910
from pathlib import Path
1011

1112
import runpod
1213

13-
WORKER_NAME = "flash-qa-cpu-smoke"
14+
WORKER_NAME = f"flash-qa-smoke-{uuid.uuid4().hex[:8]}"
1415

1516
WORKER_CODE = f'''\
1617
from runpod_flash import Endpoint

0 commit comments

Comments
 (0)