aboutsummaryrefslogtreecommitdiffstats
path: root/test/tutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/tutils.py')
-rw-r--r--test/tutils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tutils.py b/test/tutils.py
index 1eb78980..d9e543a1 100644
--- a/test/tutils.py
+++ b/test/tutils.py
@@ -6,6 +6,7 @@ import requests
class DaemonTests:
noweb = False
noapi = False
+ nohang = False
ssl = False
@classmethod
def setUpAll(self):
@@ -15,7 +16,8 @@ class DaemonTests:
ssl = self.ssl,
sizelimit=1*1024*1024,
noweb = self.noweb,
- noapi = self.noapi
+ noapi = self.noapi,
+ nohang = self.nohang
)
@classmethod