-
Notifications
You must be signed in to change notification settings - Fork 757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Improvement]: Add a daily build to run the jBallerina unit tests via sem-type enabled path #40472
Comments
Defined a new task to execute the unit tests with semtypes activated. // Define a new task for executing semtype_testng.xml separately
task semtypesUnitTest(type: Test) {
systemProperty "java.util.logging.config.file", "src/test/resources/logging.properties"
systemProperty "enableJBallerinaTests", "true"
systemProperty "ballerina.experimental.semtype", "true"
jvmArgs = ['-Xms512m', '-Xmx3g']
useTestNG() {
suites("src/test/resources/semtype_testng.xml")
}
afterSuite { suite, result ->
result.exception?.printStackTrace()
}
testLogging {
warn {
events = ["failed", "skipped"]
exceptionFormat "full"
}
}
} Above is same as the below except for the one additional property ballerina-lang/tests/jballerina-unit-test/build.gradle Lines 73 to 96 in 00b0687
However, when executing the former has less no of |
Closing with #40564 |
Description
$subject.
The text was updated successfully, but these errors were encountered: