Restore TAPI feat install w/ Karaf client in tests
[transportpce.git] / tests / transportpce_tests / common / test_utils.py
index 490ea04d87035e878a889703a78c95472c3c6a37..fb1c39faad949643f1df79291017dc6cb2d834e5 100644 (file)
@@ -198,6 +198,8 @@ def install_karaf_feature(feature_name: str):
     executable = os.path.join(
         os.path.dirname(os.path.realpath(__file__)),
         '..', '..', '..', KARAF_INSTALLDIR, 'target', 'assembly', 'bin', 'client')
+# FIXME: https://jira.opendaylight.org/browse/TRNSPRTPCE-701
+# -b option needed below because of Karaf client bug reporte in the JIRA ticket mentioned above
     return subprocess.run([executable, '-b'],
                           input='feature:install ' + feature_name + '\n feature:list | grep '
                           + feature_name + ' \n logout \n',