Skip Stack Adopt/Abandon integration tests when Stack Adopt is disabled
Closes-Bug: 1415838
Change-Id: I79a8dab72579e9fe1fccb2a67d12cc57d14640ae
diff --git a/common/config.py b/common/config.py
index 31a996b..0ea6263 100644
--- a/common/config.py
+++ b/common/config.py
@@ -88,6 +88,12 @@
cfg.IntOpt('volume_size',
default=1,
help='Default size in GB for volumes created by volumes tests'),
+ cfg.BoolOpt('skip_stack_adopt_tests',
+ default=False,
+ help="Skip Stack Adopt Integration tests"),
+ cfg.BoolOpt('skip_stack_abandon_tests',
+ default=False,
+ help="Skip Stack Abandon Integration tests"),
]