Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ before_script:
script:
- mvn $TEST_FLAG $PROFILE -B $TEST_PROJECTS


after_success:
- echo "Travis exited with ${TRAVIS_TEST_RESULT}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.junit.rules.ErrorCollector;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.StaleElementReferenceException;
import org.openqa.selenium.TimeoutException;
import org.openqa.selenium.WebElement;
import org.slf4j.Logger;
Expand Down Expand Up @@ -218,7 +219,7 @@ public void testSparkInterpreterDependencyLoading() throws Exception {
clickAndWait(By.xpath("//div[@class='modal-dialog'][contains(.,'Do you want to " +
"update this interpreter and restart with new settings?')]//" +
"div[@class='bootstrap-dialog-close-button']/button"));
} catch (TimeoutException e) {
} catch (TimeoutException | StaleElementReferenceException e) {
//Modal dialog got closed earlier than expected nothing to worry.
}

Expand Down