Skip to content

Commit a62edba

Browse files
Check for dependencies during a build
1 parent c44fd89 commit a62edba

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

testing/bin/coverage

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,9 @@ def main():
133133
if args.clean or not args.test:
134134
cobertura_build_command += ' clean'
135135

136-
# Add the cobertura target for the integration tests
137-
cobertura_build_command += ' cobertura:cobertura -Pintegration'
136+
cobertura_build_command += ' versions:display-dependency-updates' # Ensures dependencies are up to date
137+
cobertura_build_command += ' cobertura:cobertura' # Runs code coverage plugin
138+
cobertura_build_command += ' -Pintegration' # Runs the integration tests, not just tests
138139

139140
# Use a specific Cassandra version, if asked
140141
if args.cassandra_version:

0 commit comments

Comments
 (0)