From de4da7973f6ef2ec3a9a3e603eca516caed05906 Mon Sep 17 00:00:00 2001 From: Shakeel Mohamed Date: Wed, 22 Mar 2017 16:52:30 -0700 Subject: [PATCH 1/2] Update travis CI config to test against Splunk 6.4 and 6.5 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 451a0d743..edcb9db6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,8 +30,8 @@ before_install: - mkdir -p $SPLUNK_HOME/var/log/splunk env: - - SPLUNK_VERSION=6.2.6-sdk - - SPLUNK_VERSION=6.3.1-sdk + - SPLUNK_VERSION=6.4-sdk + - SPLUNK_VERSION=6.5-sdk language: python From e92f6e0f9ac6e3b5fb68ab3516d642da5f8dbaff Mon Sep 17 00:00:00 2001 From: Shakeel Mohamed Date: Thu, 23 Mar 2017 10:35:01 -0700 Subject: [PATCH 2/2] increase test timeout to 30s --- tests/testlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testlib.py b/tests/testlib.py index 1d85c59e1..f57149496 100644 --- a/tests/testlib.py +++ b/tests/testlib.py @@ -81,7 +81,7 @@ class SDKTestCase(unittest.TestCase): restart_already_required = False installedApps = [] - def assertEventuallyTrue(self, predicate, timeout=10, pause_time=0.5, + def assertEventuallyTrue(self, predicate, timeout=30, pause_time=0.5, timeout_message="Operation timed out."): assert pause_time < timeout start = datetime.now()