From 6e1e2dea974a5b7c816df539f067abda1d8e6248 Mon Sep 17 00:00:00 2001 From: yatarkan Date: Fri, 31 May 2024 17:53:14 +0400 Subject: [PATCH] Limit testing notebooks to detectron only --- .ci/validate_notebooks.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/validate_notebooks.py b/.ci/validate_notebooks.py index 1974ebefa40..55672e8e210 100644 --- a/.ci/validate_notebooks.py +++ b/.ci/validate_notebooks.py @@ -124,12 +124,12 @@ def prepare_test_plan(test_list: Optional[List[str]], ignore_list: List[str], nb ) # TODO Remove after testing notebooks_to_check = [ - "amused-lightweight-text-to-image.ipynb", + # "amused-lightweight-text-to-image.ipynb", "detectron2-to-openvino.ipynb", - "meter-reader.ipynb", - "openvino-tokenizers.ipynb", - "s3d-mil-nce-text-to-video-retrieval.ipynb", - "table-question-answering.ipynb", + # "meter-reader.ipynb", + # "openvino-tokenizers.ipynb", + # "s3d-mil-nce-text-to-video-retrieval.ipynb", + # "table-question-answering.ipynb", ] testing_notebooks = list(filter(lambda tn: any(n in str(tn) for n in notebooks_to_check), testing_notebooks)) testing_notebooks = sorted(list(set(testing_notebooks)))