From 6e72dfadf482888049adf04e1512e8b7c22b0d62 Mon Sep 17 00:00:00 2001 From: Ilya Matiach Date: Wed, 2 Aug 2023 10:54:56 -0400 Subject: [PATCH] improve notebook test logging and verbosity to diagnose timeouts --- .github/workflows/CI-notebook-vision.yml | 2 +- .github/workflows/CI-notebook.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI-notebook-vision.yml b/.github/workflows/CI-notebook-vision.yml index 621c26220d..067ea23f99 100644 --- a/.github/workflows/CI-notebook-vision.yml +++ b/.github/workflows/CI-notebook-vision.yml @@ -89,7 +89,7 @@ jobs: - name: Run notebook tests shell: bash -l {0} - run: python -m pytest notebooks -m vision_notebooks + run: python -m pytest -s -v notebooks -m vision_notebooks - name: Upload notebook test result if: always() diff --git a/.github/workflows/CI-notebook.yml b/.github/workflows/CI-notebook.yml index e48566517a..a76803044c 100644 --- a/.github/workflows/CI-notebook.yml +++ b/.github/workflows/CI-notebook.yml @@ -82,7 +82,7 @@ jobs: - name: Run notebook tests shell: bash -l {0} - run: python -m pytest notebooks -m notebooks + run: python -m pytest -s -v notebooks -m notebooks - name: Upload notebook test result if: always()