From 1bfc2a99008b622d7b9218c65a485a08dd9aa42b Mon Sep 17 00:00:00 2001 From: MatthewMiddlehurst Date: Thu, 7 Aug 2025 19:37:41 +0100 Subject: [PATCH 1/4] allow RDST testing --- aeon/testing/testing_config.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/aeon/testing/testing_config.py b/aeon/testing/testing_config.py index 66faf6fc22..f11f087a22 100644 --- a/aeon/testing/testing_config.py +++ b/aeon/testing/testing_config.py @@ -59,12 +59,7 @@ "ClaSPSegmenter": ["check_non_state_changing_method"], "HMMSegmenter": ["check_non_state_changing_method"], "RSTSF": ["check_non_state_changing_method"], - # Unknown issue not producing the same results - "RDSTRegressor": ["check_regressor_against_expected_results"], - "RISTRegressor": ["check_regressor_against_expected_results"], - # Affected by threading changes in distance module - "CanonicalIntervalForestRegressor": ["check_regressor_against_expected_results"], - # Requires y to be passed in invers_transform, + # Requires y to be passed in inverse_transform, # but this is not currently enabled/supported "DifferenceTransformer": ["check_transform_inverse_transform_equivalent"], } From 98af496088a880ae78ef3cfc74a4f7b365df5a70 Mon Sep 17 00:00:00 2001 From: MatthewMiddlehurst Date: Sun, 26 Oct 2025 22:17:27 +0000 Subject: [PATCH 2/4] workflow update --- .github/workflows/issue_comment_edited.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/issue_comment_edited.yml b/.github/workflows/issue_comment_edited.yml index 0c03d3343e..d92c7a34f4 100644 --- a/.github/workflows/issue_comment_edited.yml +++ b/.github/workflows/issue_comment_edited.yml @@ -49,6 +49,12 @@ jobs: ref: ${{ steps.label_out.outputs.branch }} token: ${{ steps.app-token.outputs.token }} + - if: ${{ steps.label_out.outputs.expected_results == 'true' }} + name: Install aeon and dependencies + uses: ./.github/actions/cpu_all_extras + with: + additional_extras: "dev" + - if: ${{ steps.label_out.outputs.expected_results == 'true' }} name: Regenerate expected results run: python aeon/testing/expected_results/_write_estimator_results.py From b772a97656718744805fbb7de17aabffe72419b0 Mon Sep 17 00:00:00 2001 From: MatthewMiddlehurst Date: Sun, 26 Oct 2025 23:17:01 +0000 Subject: [PATCH 3/4] run on pr (temp) --- .github/workflows/issue_comment_edited.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/issue_comment_edited.yml b/.github/workflows/issue_comment_edited.yml index d92c7a34f4..536043dd7b 100644 --- a/.github/workflows/issue_comment_edited.yml +++ b/.github/workflows/issue_comment_edited.yml @@ -3,6 +3,7 @@ name: Issue comment edited on: issue_comment: types: [edited] + pull_request: concurrency: group: ${{ github.workflow }}-${{ github.event.comment.id }} From 2d66900b21ad29c4411a17294ad582e5d6172af5 Mon Sep 17 00:00:00 2001 From: MatthewMiddlehurst Date: Sun, 26 Oct 2025 23:19:22 +0000 Subject: [PATCH 4/4] revert --- .github/workflows/issue_comment_edited.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/issue_comment_edited.yml b/.github/workflows/issue_comment_edited.yml index 536043dd7b..d92c7a34f4 100644 --- a/.github/workflows/issue_comment_edited.yml +++ b/.github/workflows/issue_comment_edited.yml @@ -3,7 +3,6 @@ name: Issue comment edited on: issue_comment: types: [edited] - pull_request: concurrency: group: ${{ github.workflow }}-${{ github.event.comment.id }}