When using gradle, I find I cannot have my testcases updated in Rally, as I would when using Maven. How would I do this?
Note: I'm using intelliJ as my IDE
In Maven I would use parameters similar to:
-DrallyIntegration=true
-DrallyEnabled=true
-DrallyUpdateStrategy=async
-DtestBuild=buildDetails_1
[email protected]
-DrallyKey=rallyKeyValue
-DtestSetId=TestSetName
-Drally.url=https://url_for_Rally.rallydev.com
But including these in a gradle run script (in run configurations) does not seem to be picked up on at all.
Thanks to y.bedrov for the answer.
For clarity , what I needed to do was add the block below to my build.gradle (note - there are other things defined in the integrationTest task, but the systemProperties are what are needed to get rally integration working)
task integrationTest(type: Test) {
}
Also, I included the rally plugin as a dependancy:
After rebuilding, my test cases results were updated in Rally