Skip to content

Commit 75acc6f

Browse files
committed
Address pytest.skip warning
pytest.PytestRemovedIn8Warning: pytest.skip(msg=...) is now deprecated, use pytest.skip(reason=...) instead
1 parent 49fc85f commit 75acc6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_documentation_notebooks_run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def list_doc_notebooks():
2727
)
2828
def test_run_documentation_notebooks(notebook):
2929
if "polars" in notebook.stem and pl is None:
30-
pytest.skip(msg="Polars is not available")
30+
pytest.skip("Polars is not available")
3131
if "pandas_style" in notebook.stem and pd_style is None:
32-
pytest.skip(msg="Pandas Style is not available")
32+
pytest.skip("Pandas Style is not available")
3333

3434
nb = jupytext.read(notebook)
3535
py_notebook = jupytext.writes(nb, "py:percent")

0 commit comments

Comments
 (0)