Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scenarios/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
ORDER = [
("test_containers", 5),
("test_basic_balances", 10),
("test_storage_e2e", 100),
("test_storage_e2e", 200),
("test_caching_subsystem", 200),
]

Expand Down
5 changes: 4 additions & 1 deletion scenarios/synapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from scenarios.helpers import info, run_cmd, sh

SYNAPSE_SDK_REPO = "https://github.com/FilOzone/synapse-sdk/"
SYNAPSE_SDK_REF = "8b85290ce100b25a8e431f4c6b1ea0a1eda450ff"


def clone_and_build(tmp_dir: Path) -> Path | None:
Expand All @@ -17,7 +18,9 @@ def clone_and_build(tmp_dir: Path) -> Path | None:
):
return None
if not run_cmd(
["git", "checkout", "master"], cwd=str(sdk_dir), label="checkout master HEAD"
["git", "checkout", SYNAPSE_SDK_REF],
cwd=str(sdk_dir),
label="checkout last known good ref",
):
return None
sdk_commit = sh(f"git -C {sdk_dir} rev-parse HEAD")
Expand Down
Loading