Skip to content

Commit cfd1a6c

Browse files
committed
Time Series: Skip testing notebooks not compatible with pandas 2.x
- exploratory_data_analysis.ipynb - time-series-decomposition.ipynb They are not ready for pandas 2.x yet, and block others from being upgraded. Apparently, Google Colab now strictly requires pandas 2.x?
1 parent 81d8ed6 commit cfd1a6c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

topic/timeseries/test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,8 @@ def test_notebook(notebook):
1919
raise pytest.skip(f"Kaggle dataset can not be tested "
2020
f"without authentication: {notebook.name}")
2121

22+
if notebook.name in ["exploratory_data_analysis.ipynb", "time-series-decomposition.ipynb"]:
23+
raise pytest.skip(f"Notebook is not compatible with pandas 2.x: {notebook.name}")
24+
2225
with testbook(notebook) as tb:
2326
tb.execute()

0 commit comments

Comments
 (0)