Skip to content

Commit

Permalink
Merge pull request #331 from AzeemMuzammil/fix-disable-tests-2201.8.x
Browse files Browse the repository at this point in the history
Disable architecture-model-generator Tests Temporarily
  • Loading branch information
dilanSachi authored Feb 16, 2024
2 parents f02dafb + 10ea061 commit ad45419
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class TypeGeneratorTests {
private static final String RESULTS = "results";
Gson gson = new GsonBuilder().serializeNulls().create();

@Test(description = "simple type model generation")
@Test(description = "simple type model generation", enabled = false)
public void testSimpleTypeModelGeneration() throws IOException {
Path projectPath = RES_DIR.resolve(BALLERINA).resolve(
Path.of("type_gen_simple"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void startLanguageServer() {
this.serviceEndpoint = TestUtil.initializeLanguageSever();
}

@Test(description = "test model generation for multi-module project")
@Test(description = "test model generation for multi-module project", enabled = false)
public void testMultiModuleProject() throws IOException, ExecutionException, InterruptedException {
Path projectPath = RES_DIR.resolve(BALLERINA).resolve(
Path.of("reservation_api", "reservation_service.bal"));
Expand Down Expand Up @@ -104,7 +104,7 @@ public void testMultiModuleProject() throws IOException, ExecutionException, Int

}

@Test(description = "test model generation for multiple projects with grpc and http services")
@Test(description = "test model generation for multiple projects with grpc and http services", enabled = false)
public void testGRPCWorkspaceTest() throws IOException, ExecutionException, InterruptedException {

Path project1 = RES_DIR.resolve(BALLERINA).resolve(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void startLanguageServer() {
this.serviceEndpoint = TestUtil.initializeLanguageSever();
}

@Test(description = "Test Persist ER Model generation")
@Test(description = "Test Persist ER Model generation", enabled = false)
public void testPersistERModelGeneration() throws IOException, ExecutionException, InterruptedException {

Path balFile = RES_DIR.resolve(BALLERINA).resolve(
Expand Down

0 comments on commit ad45419

Please sign in to comment.