diff --git a/.github/workflows/windows_nightlies.yml b/.github/workflows/windows_nightlies.yml index b93ed5a10d..d629108f68 100644 --- a/.github/workflows/windows_nightlies.yml +++ b/.github/workflows/windows_nightlies.yml @@ -2,7 +2,7 @@ name: Nightly unit tests, windows on: schedule: - - cron: '0 3 * * *' + - cron: '0 7 * * *' jobs: win_unit_tests: diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 2f7b1c1422..3766afd5f8 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -15,6 +15,7 @@ Release Notes * Deleted ``EmptyDataChecks`` class :pr:`2794` * Documentation Changes * Testing Changes + * Updated matched assertion message regarding monotonic indices in polynomial detrender tests :pr:`2811` .. warning:: diff --git a/evalml/tests/component_tests/test_polynomial_detrender.py b/evalml/tests/component_tests/test_polynomial_detrender.py index 4cf02d092a..64f3d8edee 100644 --- a/evalml/tests/component_tests/test_polynomial_detrender.py +++ b/evalml/tests/component_tests/test_polynomial_detrender.py @@ -102,12 +102,10 @@ def test_polynomial_detrender_needs_monotonic_index(ts_data): X, y = ts_data detrender = PolynomialDetrender(degree=2) - with pytest.raises( - ValueError, - match="The \\(time\\) index of input must be sorted monotonically increasing", - ): + with pytest.raises(ValueError) as exec_info: y_shuffled = y.sample(frac=1, replace=False) detrender.fit_transform(X, y_shuffled) + assert "monotonically" in str(exec_info.value) with pytest.raises( NotImplementedError, diff --git a/evalml/tests/dependency_update_check/minimum_requirements.txt b/evalml/tests/dependency_update_check/minimum_requirements.txt index 694110dc5b..ccff638608 100644 --- a/evalml/tests/dependency_update_check/minimum_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_requirements.txt @@ -11,4 +11,4 @@ category_encoders==2.2.2 statsmodels==0.12.2 imbalanced-learn==0.8.0 pmdarima==1.8.0 -sktime==0.8.0 +sktime==0.7.0