Skip to content

Commit

Permalink
Merge branch 'master' into fix-file-too-large-issue-41279
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadeeshan96 committed Nov 20, 2023
2 parents 541dd2d + 263039d commit 35bc64f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public String getResourceDir() {
}

@Override
@Test(dataProvider = "codeaction-data-provider")
@Test(dataProvider = "codeaction-data-provider", enabled = false)
public void test(String config) throws IOException, WorkspaceDocumentException {
super.test(config);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*/
public class CompletionPerformanceTest extends CompletionTest {

@Test(dataProvider = "completion-data-provider")
@Test(dataProvider = "completion-data-provider", enabled = false)
@Override
public void test(String config, String configPath) throws WorkspaceDocumentException, IOException {
super.test(config, configPath);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class HoverPerformanceTest extends HoverProviderTest {

private final List<Long> executionTimes = new ArrayList<>();

@Test(description = "Test Hover provider", dataProvider = "hover-data-provider")
@Test(description = "Test Hover provider", dataProvider = "hover-data-provider", enabled = false)
public void testHover(String config) throws IOException {
// We run the same test multiple times and take the average of them as the execution time. This is to
// reduce the effect of first compilation and outliers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void testInitialBreakpointVerification() throws BallerinaTestException {
}

@Test(description = "Test to assert runtime verification on breakpoints which are getting added on-the-fly " +
"during a debug session")
"during a debug session", enabled = false)
public void testOnTheFlyBreakpointVerification() throws BallerinaTestException {
// adds one initial breakpoint and run debug session until the breakpoint is reached.
debugTestRunner.addBreakPoint(new BallerinaTestDebugPoint(debugTestRunner.testEntryFilePath, 27));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void setup() {
debugTestRunner = new DebugTestRunner(testProjectName, testModuleFileName, true);
}

@Test
@Test(enabled = false)
public void testDebugCompletions() throws BallerinaTestException {
debugTestRunner.addBreakPoint(new BallerinaTestDebugPoint(debugTestRunner.testEntryFilePath, 71));
debugTestRunner.addBreakPoint(new BallerinaTestDebugPoint(debugTestRunner.testEntryFilePath, 79));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void setup() {
debugTestRunner = new DebugTestRunner(testProjectName, testModuleFileName, true);
}

@Test
@Test(enabled = false)
public void testMultiModuleDebugScenarios() throws BallerinaTestException {
Path filePath1 = debugTestRunner.testProjectPath.resolve("utils.bal");
Path filePath2 = debugTestRunner.testProjectPath.resolve("modules").resolve("math").resolve("add.bal");
Expand Down

0 comments on commit 35bc64f

Please sign in to comment.