Newly tracked file
src/indexpackage.jl
changed.
Showing 1 of 1 files from the diff.
@@ -8,6 +8,9 @@
Loading
8 | 8 | ||
9 | 9 | @info "Indexing package $current_package_name $current_package_version..." |
|
10 | 10 | ||
11 | + | # This path will always be mounted in the docker container in which we are running |
|
12 | + | store_path = "/symcache" |
|
13 | + | ||
11 | 14 | current_package_versionwithoutplus = replace(string(current_package_version), '+'=>'_') |
|
12 | 15 | cache_package_folder_path = joinpath(store_path, "v1", "packages", "$(current_package_name)_$current_package_uuid") |
|
13 | 16 | cache_path = joinpath(cache_package_folder_path, "v$(current_package_versionwithoutplus)_$current_package_treehash.jstore") |
@@ -15,7 +18,7 @@
Loading
15 | 18 | mkpath(cache_package_folder_path) |
|
16 | 19 | ||
17 | 20 | module LoadingBay end |
|
18 | - | Pkg.add(name=current_package_name, version=current_package_version) |
|
21 | + | Pkg.add(name=string(current_package_name), version=current_package_version) |
|
19 | 22 | ||
20 | 23 | # TODO Make the code below ONLY write a cache file for the package we just added here. |
|
21 | 24 | include("faketypes.jl") |
@@ -24,9 +27,6 @@
Loading
24 | 27 | include("serialize.jl") |
|
25 | 28 | using .CacheStore |
|
26 | 29 | ||
27 | - | # This path will always be mounted in the docker container in which we are running |
|
28 | - | store_path = "/symcache" |
|
29 | - | ||
30 | 30 | # Load package |
|
31 | 31 | m = try |
|
32 | 32 | LoadingBay.eval(:(import $current_package_name)) |
Files | Coverage |
---|---|
src | 71.31% |
Project Totals (7 files) | 71.31% |
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.