diff options
author | 2015-10-29 14:37:21 +0200 | |
---|---|---|
committer | 2015-10-29 14:37:21 +0200 | |
commit | cd64f9efd72f1502d2b1369da7f73eec15542c7c (patch) | |
tree | 869ceecf36ee4b498b3cbf6568d88ed525b11bb3 /scripts/automation/trex_control_plane/doc/conf.py | |
parent | 3978adceba8ce3861097747868da22bce379edd2 (diff) | |
parent | d78150a66de591a77df2496e5de828d3232a931a (diff) |
Merge branch 'dan_stateless' of csi-sceasr-b45:/auto/proj-pcube-b/apps/PL-b/tools/repo//trex-core into rpc_intg1
Diffstat (limited to 'scripts/automation/trex_control_plane/doc/conf.py')
-rwxr-xr-x | scripts/automation/trex_control_plane/doc/conf.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/automation/trex_control_plane/doc/conf.py b/scripts/automation/trex_control_plane/doc/conf.py index 46d0435d..aeee475f 100755 --- a/scripts/automation/trex_control_plane/doc/conf.py +++ b/scripts/automation/trex_control_plane/doc/conf.py @@ -24,6 +24,13 @@ sys.path.insert(0, os.path.abspath('../client')) sys.path.insert(0, os.path.abspath('../client_utils')) sys.path.insert(0, os.path.abspath('../examples')) sys.path.insert(0, os.path.abspath('../common')) +## add all external libs path manually +external_libs_path = os.path.join(os.pardir, os.pardir, os.pardir, "external_libs") +external_libs_pkgs = [os.path.join(external_libs_path, p) + for p in os.listdir(external_libs_path) + if os.path.isdir(os.path.join(external_libs_path, p))] +for p in external_libs_pkgs: + sys.path.insert(1, p) # -- General configuration ------------------------------------------------ |