Skip to content

Commit

Permalink
ngr: Improve Gradle test runner by using check --info for more output
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 23, 2023
1 parent 963ba9c commit e393fa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pueblo/ngr/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def test(self) -> None:
elif self.has_pom_xml:
run_command("mvn test")
elif self.has_gradle_files:
run_command("./gradlew check")
run_command("./gradlew check --info")

Check warning on line 252 in pueblo/ngr/runner.py

View check run for this annotation

Codecov / codecov/patch

pueblo/ngr/runner.py#L252

Added line #L252 was not covered by tests
else:
raise NotImplementedError("Unable to invoke target: test")

Expand Down

0 comments on commit e393fa7

Please sign in to comment.