diff options
author | Balint Gabor <balint.g@gmail.com> | 2018-06-25 20:04:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-25 20:04:01 +0800 |
commit | 0a22ae55729298dcd9979184d0b3c28f48b272bf (patch) | |
tree | 16e470e83985fdca5b68806015ed63dfc7f888d9 | |
parent | b0cfd9c786e2eb804257c697b8e18dd6d595be6a (diff) | |
download | go-tangerine-0a22ae55729298dcd9979184d0b3c28f48b272bf.tar.gz go-tangerine-0a22ae55729298dcd9979184d0b3c28f48b272bf.tar.zst go-tangerine-0a22ae55729298dcd9979184d0b3c28f48b272bf.zip |
swarm/fuse: Disable fuse tests, they are flaky (#17072)
-rw-r--r-- | swarm/fuse/swarmfs_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swarm/fuse/swarmfs_test.go b/swarm/fuse/swarmfs_test.go index accf9b02b..ed2021c4e 100644 --- a/swarm/fuse/swarmfs_test.go +++ b/swarm/fuse/swarmfs_test.go @@ -1637,6 +1637,7 @@ func (ta *testAPI) appendFileContentsToEnd(t *testing.T, toEncrypt bool) { //run all the tests func TestFUSE(t *testing.T) { + t.Skip("disable fuse tests until they are stable") //create a data directory for swarm datadir, err := ioutil.TempDir("", "fuse") if err != nil { |