We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cabab7 commit 11e5edaCopy full SHA for 11e5eda
1 file changed
testing/bin/coverage
@@ -128,11 +128,16 @@ def main():
128
# Run against the entire integration suite
129
execute('%s' % cobertura_build_command)
130
131
- # Save out cobertura site files
132
- save_cobertura_site()
+ try:
+ if raw_input("Save Cobertura Report? [y/N] ").lower() == 'y':
133
134
- # Perhaps move cobertura site files to a central location
135
- maybe_upload_cobertura_site()
+ # Save out cobertura site files
+ save_cobertura_site()
136
+
137
+ # Perhaps move cobertura site files to a central location
138
+ maybe_upload_cobertura_site()
139
+ except KeyboardInterrupt:
140
+ print
141
142
# Optionally, open coverage report when done building
143
if read_config('general', 'open_cobertura_site_after_build', 'boolean'):
0 commit comments