From 50cb7874380b286f3b34c82299cf5eb88b0d0059 Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" Date: Wed, 17 Jul 2019 09:30:47 +0300 Subject: [PATCH] Test quota hangs on OSX Found that quota test hangs on OSX, decided to skip it on 'Darwin' platforms to be able to run the complete testing on OSX. Needed for #4358 --- test/quota.skipcond | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/quota.skipcond diff --git a/test/quota.skipcond b/test/quota.skipcond new file mode 100644 index 0000000..c578b8c --- /dev/null +++ b/test/quota.skipcond @@ -0,0 +1,7 @@ +import platform + +# Disabled on OSX due to fail #4357. +if platform.system() == 'Darwin': + self.skip = 1 + +# vim: set ft=python: