Other files ignored by Codecov
Showing 1 of 7 files from the diff.
@@ -23,14 +23,21 @@
Loading
23 | 23 | HeadlessGdx.init(); |
|
24 | 24 | ||
25 | 25 | Path projectFolder = Paths.get(args.length >= 1 ? args[0] : ".").toRealPath(); |
|
26 | - | Path buildToolsFolder; |
|
26 | + | ||
27 | + | Path buildToolsFolder = projectFolder.resolve("build-tools"); |
|
27 | 28 | if (args.length >= 2) { |
|
28 | 29 | buildToolsFolder = Paths.get(args[1]).toRealPath(); |
|
29 | - | } else { |
|
30 | - | buildToolsFolder = projectFolder.resolve("build-tools"); |
|
31 | 30 | } |
|
31 | + | ||
32 | 32 | Path configPath = ProjectFolderConfig.getBuildResFolder(projectFolder).resolve("optimizer.json"); |
|
33 | + | if (args.length >= 3) { |
|
34 | + | configPath = Paths.get(args[2]).toRealPath(); |
|
35 | + | } |
|
36 | + | ||
33 | 37 | Path outputPath = projectFolder.resolve("res-optimized"); |
|
38 | + | if (args.length >= 4) { |
|
39 | + | outputPath = Paths.get(args[3]).toAbsolutePath(); |
|
40 | + | } |
|
34 | 41 | ||
35 | 42 | LOG.info("Reading config: {}", configPath.toAbsolutePath()); |
|
36 | 43 | String json = FileUtil.readUtf8(configPath.toFile()); |
Files | Complexity | Coverage |
---|---|---|
api/src/main/java/nl/weeaboo/vn | 91.53% | 96.76% |
buildtools/src/main/java/nl/weeaboo/vn/buildtools | 81.13% | 87.46% |
core/src/main/java/nl/weeaboo/vn | 82.55% | 86.77% |
desktop/src/main/java/nl/weeaboo/vn/desktop | 1.52% | 2.26% |
Project Totals (383 files) | 81.01% | 84.34% |
757960755
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.