From adc007f664e9020493ed58d14b36c2dd728cb563 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Fri, 15 Sep 2023 12:20:41 +0200 Subject: [PATCH] test(python): Do not run user guide examples by default (#11128) --- py-polars/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/pyproject.toml b/py-polars/pyproject.toml index eb6e414acb44..3d58922b974a 100644 --- a/py-polars/pyproject.toml +++ b/py-polars/pyproject.toml @@ -190,7 +190,7 @@ addopts = [ "--strict-markers", "--import-mode=importlib", # Default to running fast tests only. To run ALL tests, run: pytest -m "" - "-m not slow and not hypothesis and not benchmark and not write_disk", + "-m not slow and not hypothesis and not benchmark and not write_disk and not docs", ] markers = [ "write_disk: Tests that write to disk",