Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZEPPELIN-3535. Disable flaky test #3020

Closed
wants to merge 1 commit into from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void testDisableParagraphRunButton() throws Exception {
}
}

@Test
// @Test
public void testRunOnSelectionChange() throws Exception {
try {
String xpathToRunOnSelectionChangeCheckbox = getParagraphXPath(1) + "//ul/li/form/input[contains(@ng-checked, 'true')]";
Expand Down Expand Up @@ -480,7 +480,7 @@ public void testShowAndHideLineNumbers() throws Exception {
}
}

@Test
// @Test
public void testEditOnDoubleClick() throws Exception {
try {
createNewNote();
Expand Down Expand Up @@ -712,7 +712,7 @@ public void testNoteDynamicFormTextInput() throws Exception {
}
}

@Test
// @Test
public void testNoteDynamicFormSelect() throws Exception {
try {
createNewNote();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.io.File;
import java.io.FileOutputStream;
Expand Down Expand Up @@ -68,7 +67,7 @@ private void delete(File file) {
}


@Test
// @Test
public void test() throws IOException, InterruptedException {
assertNull(fileChanged);
assertEquals(0, numChanged.get());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ErrorCollector;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -59,7 +58,7 @@ public static void destroy() throws Exception {
public void setUp() {
}

@Test
// @Test
public void testThatOtherUserCanAccessNoteIfPermissionNotSet() throws IOException {
GetMethod loginWithoutCookie = httpGet("/api/security/ticket");
Map result = gson.fromJson(loginWithoutCookie.getResponseBodyAsString(), Map.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public void sparkRTest() throws IOException {
assertEquals("[1] 3", p.getResult().message().get(0).getData().trim());
}

@Test
// @Test
public void pySparkTest() throws IOException {
// create new note
Note note = ZeppelinServer.notebook.createNote(anonymous);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ private void terminateScheduledNote(Note note) {
}


@Test
// @Test
public void testAutoRestartInterpreterAfterSchedule() throws InterruptedException, IOException, InterpreterNotFoundException {
// create a note and a paragraph
Note note = notebook.createNote(anonymous);
Expand Down