From 2bd449518c4ee827a811d3596344147fbe1e79b8 Mon Sep 17 00:00:00 2001 From: Umut Date: Mon, 2 Jan 2023 14:41:52 +0100 Subject: [PATCH] chore: disable codeblock and notebook tests for the time being These tests take huge amount of time in the CI, we should find a way to utilize key cache in them. Until then, they should be disabled. --- .github/workflows/continuous-integration.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index f5d86d3c7..e99145cb7 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -331,15 +331,15 @@ jobs: run: | make pytest - - name: PyTest CodeBlocks - if: ${{ steps.conformance.outcome == 'success' && !cancelled() }} - run: | - make pytest_codeblocks - - - name: PyTest Notebooks - if: ${{ fromJSON(env.IS_WEEKLY) && steps.conformance.outcome == 'success' && !cancelled() }} - run: | - make pytest_nb +# - name: PyTest CodeBlocks +# if: ${{ steps.conformance.outcome == 'success' && !cancelled() }} +# run: | +# make pytest_codeblocks +# +# - name: PyTest Notebooks +# if: ${{ fromJSON(env.IS_WEEKLY) && steps.conformance.outcome == 'success' && !cancelled() }} +# run: | +# make pytest_nb # Compute coverage only on reference build - name: Test coverage