Skip to content

Commit 65c4266

Browse files
amotlsurister
authored andcommitted
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 4a25ca2 commit 65c4266

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

topic/timeseries/test.py

+3
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)