Skip to content

Commit

Permalink
Add a workaround for tests not running
Browse files Browse the repository at this point in the history
  • Loading branch information
RadCod3 committed Mar 20, 2024
1 parent b7b277d commit 8387050
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions cli/ballerina-cli/src/test/resources/testng.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ under the License.
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >

<suite name="commands-test-suite">
<test name="diagnostics-tests" preserve-order="true">
<packages>
<package name="io.ballerina.cli.diagnostics"/>
</packages>
</test>
<test name="command-tests" preserve-order="true">
<classes>
<class name="io.ballerina.cli.cmd.AddCommandTest" />
Expand All @@ -46,10 +51,4 @@ under the License.
<class name="io.ballerina.cli.cmd.ToolCommandTest"/>
</classes>
</test>
<test name="diagnostics-tests" preserve-order="true">
<classes>
<class name="io.ballerina.cli.diagnostics.AnnotateDiagnosticsTest" />
<class name="io.ballerina.cli.diagnostics.DiagnosticAnnotationTest" />
</classes>
</test>
</suite>

0 comments on commit 8387050

Please sign in to comment.