diff --git a/conftest.py b/conftest.py index 1cfa2b8b382..88062fab2d3 100644 --- a/conftest.py +++ b/conftest.py @@ -17,6 +17,9 @@ def pytest_ignore_collect(path): if "ghpython" in str(path): return True + if str(path).endswith("_cli.py"): + return True + @pytest.fixture(autouse=True) def add_compas(doctest_namespace):