tests: Added http static server tests.
Coverage increased from 21% to 80% Type: test Change-Id: Ic8ecc620cef738d7dbe4c259f58a373ac155a588 Signed-off-by: adrianvillin <avillin@cisco.com>
This commit is contained in:

committed by
Dave Wallace

parent
c78eeaba49
commit
30f2600dcf
@ -6,11 +6,10 @@ import subprocess
|
||||
import sys
|
||||
|
||||
|
||||
def can_create_namespaces():
|
||||
def can_create_namespaces(namespace="vpp_chk_4212"):
|
||||
"""Check if the environment allows creating the namespaces"""
|
||||
|
||||
try:
|
||||
namespace = "vpp_chk_4212"
|
||||
result = subprocess.run(["ip", "netns", "add", namespace], capture_output=True)
|
||||
if result.returncode != 0:
|
||||
return False
|
||||
@ -18,7 +17,7 @@ def can_create_namespaces():
|
||||
if result.returncode != 0:
|
||||
return False
|
||||
return True
|
||||
except:
|
||||
except Exception:
|
||||
return False
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user