diff --git a/taskcluster/ci/source-test/shadow-scheduler.yml b/taskcluster/ci/source-test/shadow-scheduler.yml index 6b08ccecf477..be9c17fecfb6 100644 --- a/taskcluster/ci/source-test/shadow-scheduler.yml +++ b/taskcluster/ci/source-test/shadow-scheduler.yml @@ -154,14 +154,3 @@ bugbug_reduced_high: worker: env: TASKGRAPH_OPTIMIZE_STRATEGIES: taskgraph.optimize:experimental.bugbug_reduced_high - -seta: - description: Runs the SETA optimization strategy instead of the default. - treeherder: - symbol: SS(seta) - index: - product: source - job-name: shadow-scheduler-seta - worker: - env: - TASKGRAPH_OPTIMIZE_STRATEGIES: taskgraph.optimize:experimental.seta diff --git a/taskcluster/taskgraph/optimize/__init__.py b/taskcluster/taskgraph/optimize/__init__.py index a625f836ca7e..b963620f9a70 100644 --- a/taskcluster/taskgraph/optimize/__init__.py +++ b/taskcluster/taskgraph/optimize/__init__.py @@ -568,12 +568,6 @@ class experimental(object): } """Runs task containing tests in the same directories as modified files.""" - seta = { - 'test': Any('skip-unless-schedules', 'seta'), - } - """Provides a stable history of SETA's performance in the event we make it - non-default in the future. Only useful as a benchmark.""" - class ExperimentalOverride(object): """Overrides dictionaries that are stored in a container with new values. diff --git a/tools/tryselect/test/test_auto.py b/tools/tryselect/test/test_auto.py index 4b7bd5b2a3ac..1b18b8fe91c4 100644 --- a/tools/tryselect/test/test_auto.py +++ b/tools/tryselect/test/test_auto.py @@ -12,11 +12,11 @@ from tryselect.selectors.auto import AutoParser def test_strategy_validation(): parser = AutoParser() - args = parser.parse_args(["--strategy", "seta"]) - assert args.strategy == "taskgraph.optimize:tryselect.seta" + args = parser.parse_args(["--strategy", "relevant_tests"]) + assert args.strategy == "taskgraph.optimize:tryselect.relevant_tests" - args = parser.parse_args(["--strategy", "taskgraph.optimize:experimental.seta"]) - assert args.strategy == "taskgraph.optimize:experimental.seta" + args = parser.parse_args(["--strategy", "taskgraph.optimize:experimental.relevant_tests"]) + assert args.strategy == "taskgraph.optimize:experimental.relevant_tests" with pytest.raises(SystemExit): parser.parse_args(["--strategy", "taskgraph.optimize:tryselect"])