diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-01-13 11:33:52 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-01-18 19:14:30 +0000 |
commit | 8467919e4e27cda004a900082c5084875f04403d (patch) | |
tree | e0507a37672b80877c259a9e63669d9d3f93ca40 /test/vpp_papi_provider.py | |
parent | 5011c67058c3c37d344c5d83ab6046700327b7b4 (diff) |
VTL: Fix sphinx doc generation.
Remove unnecessary envvar magic for sphinx builds.
Just provide the proper mock objects.
Change-Id: I151513eb47d2f71cf221651145dbcdc153448772
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index 1ca9a89a2ea..087424cb22f 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -4,22 +4,10 @@ import time from collections import deque from six import moves -from vpp_papi import mac_pton +from vpp_papi import VPP, mac_pton from hook import Hook from vpp_l2 import L2_PORT_TYPE -# Sphinx creates auto-generated documentation by importing the python source -# files and collecting the docstrings from them. The NO_VPP_PAPI flag allows -# the vpp_papi_provider.py file to be importable without having to build -# the whole vpp api if the user only wishes to generate the test documentation. - -try: - from vpp_papi import VPP -except ImportError: - if not os.getenv("NO_VPP_PAPI") == 1: - raise - pass - # from vnet/vnet/mpls/mpls_types.h MPLS_IETF_MAX_LABEL = 0xfffff MPLS_LABEL_INVALID = MPLS_IETF_MAX_LABEL + 1 |