From ed54a250088a754c02b83955119e77906efc164d Mon Sep 17 00:00:00 2001 From: eleith Date: Fri, 12 May 2023 14:57:04 -0700 Subject: [PATCH] disable macOS tests our macOS tests fails more than half the time while linux and windows pass. the errors are always due to timeout issues. while we can improve the performance of our tests (particularly test/messages.ts) sometimes the timeouts happen when testing against the local SMTPServer as of now, we can't get insight into whether our tests or passing or failing as the majority of test fails when macOS is included. github is away of the issue: https://github.com/actions/runner-images/issues/3885 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bd56440..3bf960a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: fail-fast: false matrix: node: [^12, ^14, ^16, ^18] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest] steps: - name: checkout