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 diff --git a/aeon/testing/testing_config.py b/aeon/testing/testing_config.py index 1c831047dc..71e3e5f54f 100644 --- a/aeon/testing/testing_config.py +++ b/aeon/testing/testing_config.py @@ -52,11 +52,6 @@ "FLUSSSegmenter": ["check_non_state_changing_method"], "ClaSPSegmenter": ["check_non_state_changing_method"], "HMMSegmenter": ["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 inverse_transform, # but this is not currently enabled/supported "DifferenceTransformer": ["check_transform_inverse_transform_equivalent"],