From 2161b3dcfbf52c2b6a66f6348e17b47d479bcbcb Mon Sep 17 00:00:00 2001 From: Max Goltzsche Date: Sun, 25 Aug 2024 20:43:32 +0200 Subject: [PATCH] chore(workflow): disable e2e tests within CI ...since they stopped working due to youtube blocking unauthenticated requests from GHA. --- .github/workflows/workflow.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 01c9a50..ee2d9ff 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -42,8 +42,10 @@ jobs: - name: Unit test run: make test - - name: E2E test - run: make test-e2e + # TODO: Make e2e tests work again within CI. + # They stopped working now apparently because youtube blocks unauthenticated requests from GHA. + #- name: E2E test + # run: make test-e2e - name: Build wheel run: |