Add Active Active L3 GW scenario test cases
Depends-On: I34e2453ab206c13c3ca40c4181970c320bdd8e67
Change-Id: Idba4e48c22f8668ed2565e0c97e53a438b6746e7
Signed-off-by: Frode Nordahl <frode.nordahl@canonical.com>
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 88b9718..a5d87bb 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -16,7 +16,10 @@
import sys
def autodoc_skip_member_handler(app, what, name, obj, skip, options):
- return skip or (what == "class" and not name.startswith("test"))
+ return skip or (
+ (what == "class" and not name.startswith("test")) or
+ # NOTE(fnordahl): Sphinx does not like the ASCII art in the docstring.
+ (what == 'module' and name == 'NetworkMultipleGWTest'))
def setup(app):
app.connect('autodoc-skip-member', autodoc_skip_member_handler)