We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a7ea09 commit fa1b30bCopy full SHA for fa1b30b
tests/experiments/test_ray.py
@@ -1,12 +1,15 @@
1
import bgym
2
import pytest
3
import ray
4
-from agentlab.experiments.graph_execution_ray import execute_task_graph
+from flaky import flaky
5
+
6
from agentlab.experiments.exp_utils import MockedExpArgs, add_dependencies
7
+from agentlab.experiments.graph_execution_ray import execute_task_graph
8
9
TASK_TIME = 3
10
11
12
+@flaky(max_runs=3, min_passes=1)
13
def test_execute_task_graph():
14
# Define a list of ExpArgs with dependencies
15
exp_args_list = [
0 commit comments