mirror of https://github.com/AMT-Cheif/drift.git
Only format coverage once
This commit is contained in:
parent
47a032c645
commit
053d4280fc
|
@ -6,8 +6,6 @@ import 'package:grinder/grinder_sdk.dart';
|
|||
import 'package:coverage/coverage.dart';
|
||||
import 'package:path/path.dart';
|
||||
|
||||
import 'format_coverage.dart' as fc;
|
||||
|
||||
Future<void> main(List<String> args) async {
|
||||
// First, generate the build script, see
|
||||
// https://github.com/dart-lang/build/blob/3208cfe94c475ed3e1ec44c227aadaddaeac263d/build_runner/bin/build_runner.dart#L65
|
||||
|
@ -19,7 +17,4 @@ Future<void> main(List<String> args) async {
|
|||
final coverage = await runAndCollect(tests, onExit: true, printOutput: true);
|
||||
|
||||
File('coverage.json').writeAsStringSync(json.encode(coverage));
|
||||
|
||||
print('formatting to .lcov format');
|
||||
await fc.main();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue