Skip to content

Commit 22c7745

Browse files
committed
debug
1 parent 25bc649 commit 22c7745

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/utils_for_testbook.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ def inner(*args: Any, **kwargs: Any) -> Any:
4242

4343

4444
def _build_skip_decorator(notebook_name: str) -> Callable:
45+
import logging
46+
47+
logger = logging.getLogger(__name__)
48+
logger.error(
49+
f"{notebook_name=} ; should skip: {should_skip_notebook(notebook_name)}"
50+
)
4551
return pytest.mark.skipif(
4652
should_skip_notebook(notebook_name),
4753
reason="Didn't change",

0 commit comments

Comments
 (0)