From e160ade552ac080202fdb79369009fc2edef7236 Mon Sep 17 00:00:00 2001 From: "Peter M. Stahl" Date: Tue, 3 Dec 2024 22:57:08 +0100 Subject: [PATCH] Disable WASM tests in Safari due to weird issues with Safari driver --- .github/workflows/rust-build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust-build.yml b/.github/workflows/rust-build.yml index bd63e78..cf4179b 100644 --- a/.github/workflows/rust-build.yml +++ b/.github/workflows/rust-build.yml @@ -102,8 +102,8 @@ jobs: brew install --cask firefox brew install geckodriver - - name: Enable Safari web driver - run: sudo safaridriver --enable + #- name: Enable Safari web driver + # run: sudo safaridriver --enable - name: Run WASM integration tests on NodeJS run: wasm-pack test --node -- --no-default-features @@ -114,8 +114,10 @@ jobs: - name: Run WASM integration tests in Firefox run: wasm-pack test --headless --firefox -- --no-default-features - - name: Run WASM integration tests in Safari - run: wasm-pack test --headless --safari -- --no-default-features + # Safari WASM tests not working, reason unclear + # https://github.com/pemistahl/grex/actions/runs/12146729784/job/33871544034#step:9:30 + #- name: Run WASM integration tests in Safari + # run: wasm-pack test --headless --safari -- --no-default-features coverage-report: name: Coverage Report