From 030a7c2a1dbdcf8b2f7d0f591fd0f9f9f9e82c4d Mon Sep 17 00:00:00 2001 From: eaidova Date: Fri, 26 Apr 2024 13:28:10 +0400 Subject: [PATCH] disable usage skip extension in tests --- .ci/patch_notebooks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/.ci/patch_notebooks.py b/.ci/patch_notebooks.py index 13a25e34545..cd472319dc6 100644 --- a/.ci/patch_notebooks.py +++ b/.ci/patch_notebooks.py @@ -132,7 +132,6 @@ def patch_notebooks(notebooks_dir, test_device="", skip_ov_install=False): if not found: print(f"No replacements found for {notebookfile}") disable_gradio_debug(nb, notebookfile) - disable_skip_ext(nb, notebookfile) nb_without_out, _ = output_remover.from_notebook_node(nb) with notebookfile.with_name(f"test_{notebookfile.name}").open("w", encoding="utf-8") as out_file: out_file.write(nb_without_out)