Skip to content

Commit

Permalink
Disable failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HindujaB committed Oct 13, 2023
1 parent fdcdde0 commit a43bf12
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,7 @@ public void testBuildAndPushTestProject1() throws BallerinaTestException {
* @throws IOException When updating the module names.
* @throws BallerinaTestException When running commands.
*/
@Test(description = "Test building and running TestProject2", dependsOnMethods = "testBuildAndPushTestProject1",
enabled = false)
@Test(description = "Test building and running TestProject2", dependsOnMethods = "testBuildAndPushTestProject1")
public void testBuildTestProject2() throws IOException, BallerinaTestException, InterruptedException {
// Replace module names in source file
Path fooSayBal = testProj2Path.resolve("src").resolve("foo").resolve("foo_say.bal");
Expand Down Expand Up @@ -202,8 +201,7 @@ public void testBuildTestProject2() throws IOException, BallerinaTestException,
* @throws IOException When updating the implementation of the project.
* @throws BallerinaTestException When running commands.
*/
@Test(description = "Test updating TestProject1 and pushing.", dependsOnMethods = "testBuildTestProject2",
enabled = false)
@Test(description = "Test updating TestProject1 and pushing.", dependsOnMethods = "testBuildTestProject2")
public void testModifyProj1AndPush() throws IOException, BallerinaTestException {
// Update code in module1
Path module2SourceFile = testProj1Path.resolve("src").resolve(module2Name).resolve("say.bal");
Expand Down Expand Up @@ -260,8 +258,7 @@ public void testModifyProj1AndPush() throws IOException, BallerinaTestException
*
* @throws BallerinaTestException When running commands.
*/
@Test(description = "Test rebuilding and running TestProject2", dependsOnMethods = "testModifyProj1AndPush",
enabled = false)
@Test(description = "Test rebuilding and running TestProject2", dependsOnMethods = "testModifyProj1AndPush")
public void testRebuildTestProj2() throws BallerinaTestException {
// Build module
String fooBaloFileName = "foo-"
Expand Down

0 comments on commit a43bf12

Please sign in to comment.