Skip to content

Commit

Permalink
Ignore some tests that uses interpreters we do not support
Browse files Browse the repository at this point in the history
  • Loading branch information
StrongestNumber9 committed Nov 14, 2024
1 parent 16f871f commit a9356ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ public void testRunNoteBlocking() throws IOException {
}
}

@Ignore(value="This test should not work as %sh should not be available")
@Test
public void testRunNoteNonBlocking() throws Exception {
LOG.info("Running testRunNoteNonBlocking");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

package org.apache.zeppelin.notebook;

import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
Expand All @@ -25,6 +26,7 @@

public class ParagraphTextParserTest {

@Ignore(value="Uses interpreter we do not support")
@Test
public void testJupyter() {
ParagraphTextParser.ParseResult parseResult = ParagraphTextParser.parse("%jupyter(kernel=ir)");
Expand All @@ -35,6 +37,7 @@ public void testJupyter() {
}


@Ignore(value="Uses interpreter we do not support")
@Test
public void testCassandra() {
ParagraphTextParser.ParseResult parseResult = ParagraphTextParser.parse(
Expand Down

0 comments on commit a9356ba

Please sign in to comment.