From 6763925a4dd399b42e0c33347caa4bc7fc5f8acd Mon Sep 17 00:00:00 2001 From: Alexey Masterov Date: Fri, 18 Jul 2025 16:32:07 +0200 Subject: [PATCH] Run all the operations --- test_runner/random_ops/test_random_ops.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test_runner/random_ops/test_random_ops.py b/test_runner/random_ops/test_random_ops.py index cace2d1689..35045213f9 100644 --- a/test_runner/random_ops/test_random_ops.py +++ b/test_runner/random_ops/test_random_ops.py @@ -674,8 +674,14 @@ def test_api_random( random.seed(seed) pg_bin, project = setup_class # Here we can assign weights - # XXX do not merge, debug only ACTIONS = ( + ("new_branch", 1.2), + ("new_branch_random_time", 0.5), + ("new_ro_endpoint", 1.4), + ("delete_ro_endpoint", 0.8), + ("delete_branch", 1.2), + ("restore_random_time", 0.9), + ("reset_to_parent", 0.3), ("create_snapshot", 0.15), ("restore_snapshot", 0.1), ("delete_snapshot", 0.1),