Remove setup.sh in favor of skyvern CLI (#4737)

This commit is contained in:
Shuchang Zheng
2026-02-12 20:43:27 -08:00
committed by GitHub
parent 08d3b04d14
commit 155c07f8be
77 changed files with 12358 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
import pytest
from skyvern.forge.sdk.db import id as id_module
def test_generate_id_uniqueness_with_overflow(monkeypatch: pytest.MonkeyPatch) -> None:
total_ids = 10000
generated_ids = [id_module.generate_id() for _ in range(total_ids)]
assert len(set(generated_ids)) == total_ids