We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c44fd89 commit a62edbaCopy full SHA for a62edba
1 file changed
testing/bin/coverage
@@ -133,8 +133,9 @@ def main():
133
if args.clean or not args.test:
134
cobertura_build_command += ' clean'
135
136
- # Add the cobertura target for the integration tests
137
- cobertura_build_command += ' cobertura:cobertura -Pintegration'
+ cobertura_build_command += ' versions:display-dependency-updates' # Ensures dependencies are up to date
+ cobertura_build_command += ' cobertura:cobertura' # Runs code coverage plugin
138
+ cobertura_build_command += ' -Pintegration' # Runs the integration tests, not just tests
139
140
# Use a specific Cassandra version, if asked
141
if args.cassandra_version:
0 commit comments