From 233e2c82a424934d93733e8e25eeb85f0056cc82 Mon Sep 17 00:00:00 2001 From: Tetsuo Kiso Date: Mon, 8 Nov 2021 02:19:20 +0900 Subject: [PATCH] Disable go test in CI (#113) --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f13133a..e3aba19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,9 @@ jobs: run: sudo apt-get update && sudo apt-get install -y fuse3 libfuse-dev - name: Build run: go build ./... - # Exclude TestPosix and TestMemFS because some of the tests hung indefinitely. - # Also, tests need to be run sequentially to avoid hanging indefinitely. - - name: Run tests - run: go test -v -p 1 -bench=. -run="TestSuccessfulMount|TestNonexistentMountPoint|TestCachingFS|TestDynamicFS|TestErrorFS|TestFlushFS|TestForgetFS|TestHelloFS|TestInterruptFS|TestReadonlyLoopbackFS|TestStatFS" ./... + # Disabled running `go test` because running tests hung at random, + # preventing us from running the tests in CI reliably. + # (cf. https://github.com/jacobsa/fuse/issues/97) macos-build: runs-on: macos-latest