From 1f20e185ca4f3099f2d334f5a2efc6eeb38ce6b6 Mon Sep 17 00:00:00 2001 From: Marek Wydmuch Date: Mon, 19 Aug 2024 02:03:49 +0200 Subject: [PATCH] Disable test on Apple Silicon due to performance issues --- .github/workflows/build-and-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 3a8d3be1e..3dd6852cb 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -76,4 +76,6 @@ jobs: run: python -c "import vizdoom" - name: Run tests + # Skip tests on macOS with Apple Silicon, because they are slow (TODO: investigate) + if: matrix.os != 'macos-14' run: pytest tests