We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49fc85f commit 75acc6fCopy full SHA for 75acc6f
tests/test_documentation_notebooks_run.py
@@ -27,9 +27,9 @@ def list_doc_notebooks():
27
)
28
def test_run_documentation_notebooks(notebook):
29
if "polars" in notebook.stem and pl is None:
30
- pytest.skip(msg="Polars is not available")
+ pytest.skip("Polars is not available")
31
if "pandas_style" in notebook.stem and pd_style is None:
32
- pytest.skip(msg="Pandas Style is not available")
+ pytest.skip("Pandas Style is not available")
33
34
nb = jupytext.read(notebook)
35
py_notebook = jupytext.writes(nb, "py:percent")
0 commit comments