From 0ece296842d0ed8c6288a5243158405bdda3477b Mon Sep 17 00:00:00 2001 From: Madison May Date: Thu, 11 Jun 2015 18:19:12 -0400 Subject: [PATCH] FIX: remove sentiment_hq from multi-api tests --- tests/test_remote.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_remote.py b/tests/test_remote.py index ef66a96..0e80b0b 100644 --- a/tests/test_remote.py +++ b/tests/test_remote.py @@ -13,6 +13,9 @@ from indicoio import sentiment_hq, batch_sentiment_hq from indicoio import predict_image, predict_text, batch_predict_image, batch_predict_text from indicoio.utils.errors import IndicoError +# TODO: remove once sentiment_hq is added to the public API +config.TEXT_APIS.remove("sentiment_hq") + DIR = os.path.dirname(os.path.realpath(__file__)) class BatchAPIRun(unittest.TestCase):