-
Notifications
You must be signed in to change notification settings - Fork 37
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
[FEATURE] Setup Integration Test CI #56
Labels
enhancement
New feature or request
Comments
Can you document the necessary commands that you're using on the command line? I'll update the appropriate workflows. It appeared to me they were running with |
In task integTest(type: RestIntegTestTask) {
description = "Run tests against a cluster"
testClassesDirs = sourceSets.test.output.classesDirs
classpath = sourceSets.test.runtimeClasspath
}
tasks.named("check").configure { dependsOn(integTest) }
integTest {
// The --debug-jvm command-line option makes the cluster debuggable; this makes the tests debuggable
if (System.getProperty("test.debug") != null) {
jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005'
}
} In CI action it looks like it's running the task:
|
2 tasks
@jackiehanyang I moved this issue under a wider integ test issue: #73 |
Closing this as it's addressed by #73 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem?
Currently, the integration test CI of this repo is not running.
What solution would you like?
Adding the proper Gradle setup to get the integration test CI running.
The text was updated successfully, but these errors were encountered: