Skip to content

Commit eb761f5

Browse files
[MNT] Skip some excected results tests when numba is disabled (aeon-toolkit#2639)
* skip some numba tests * Empty commit for CI * Update testing_config.py --------- Co-authored-by: MatthewMiddlehurst <25731235+MatthewMiddlehurst@users.noreply.github.com>
1 parent c1c830b commit eb761f5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

aeon/testing/testing_config.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"RSASTClassifier": ["check_fit_deterministic"],
5353
"SAST": ["check_fit_deterministic"],
5454
"RSAST": ["check_fit_deterministic"],
55-
"MatrixProfile": ["check_persistence_via_pickle"],
55+
"MatrixProfile": ["check_fit_deterministic", "check_persistence_via_pickle"],
5656
# missed in legacy testing, changes state in predict/transform
5757
"FLUSSSegmenter": ["check_non_state_changing_method"],
5858
"InformationGainSegmenter": ["check_non_state_changing_method"],
@@ -73,6 +73,10 @@
7373
EXCLUDED_TESTS_NO_NUMBA = {
7474
# See issue #622
7575
"HIVECOTEV2": ["check_classifier_against_expected_results"],
76+
# Other failures
77+
"TemporalDictionaryEnsemble": ["check_classifier_against_expected_results"],
78+
"OrdinalTDE": ["check_classifier_against_expected_results"],
79+
"CanonicalIntervalForestRegressor": ["check_regressor_against_expected_results"],
7680
}
7781

7882

0 commit comments

Comments
 (0)