├── .gitignore ├── .travis.yml ├── BUILD ├── LICENSE ├── README.md ├── WORKSPACE ├── lint.sh ├── package.json ├── private ├── BUILD ├── format.bzl ├── pylint_bin.py └── requirements.txt ├── report ├── BUILD ├── bazel.py ├── defs.bzl ├── generator.py ├── go.py ├── main.py └── normalize.py ├── test ├── BUILD ├── R │ ├── BUILD │ ├── DESCRIPTION │ ├── LICENSE │ ├── NAMESPACE │ ├── R │ │ └── fn.R │ ├── ccdep │ │ ├── BUILD │ │ ├── ccdep.c │ │ └── ccdep.h │ ├── src │ │ ├── Makevars │ │ ├── fn.c │ │ ├── fn.h │ │ └── lib │ │ │ ├── getCharacter.c │ │ │ └── getCharacter.h │ └── tests │ │ └── test.R ├── clang │ ├── BUILD │ ├── bar.c │ ├── bar.h │ ├── bar_test.c │ ├── foo.c │ ├── foo.h │ └── foo_test.c ├── go │ ├── bar │ │ ├── BUILD.bazel │ │ ├── bar.go │ │ └── bar_test.go │ └── foo │ │ ├── BUILD.bazel │ │ ├── foo.go │ │ └── foo_test.go ├── golden │ └── test │ │ ├── go │ │ ├── bar │ │ │ └── go_default_test │ │ │ │ ├── baseline_coverage.dat │ │ │ │ └── coverage.dat │ │ └── foo │ │ │ └── go_default_test │ │ │ ├── baseline_coverage.dat │ │ │ └── coverage.dat │ │ ├── js │ │ ├── bar │ │ │ └── baseline_coverage.dat │ │ ├── bar_test │ │ │ ├── baseline_coverage.dat │ │ │ └── coverage.dat │ │ ├── foo │ │ │ └── baseline_coverage.dat │ │ └── foo_test │ │ │ ├── baseline_coverage.dat │ │ │ └── coverage.dat │ │ └── jvm │ │ ├── java │ │ └── baseline_coverage.dat │ │ ├── java2 │ │ └── baseline_coverage.dat │ │ ├── java_ExampleATest │ │ ├── baseline_coverage.dat │ │ └── coverage.dat │ │ ├── java_ExampleBTest │ │ ├── baseline_coverage.dat │ │ └── coverage.dat │ │ ├── java_ExampleCTest │ │ ├── baseline_coverage.dat │ │ └── coverage.dat │ │ ├── java_Foo2ExampleATest │ │ ├── baseline_coverage.dat │ │ └── coverage.dat │ │ ├── kt │ │ └── baseline_coverage.dat │ │ ├── kt2 │ │ └── baseline_coverage.dat │ │ ├── kt_ExampleATest │ │ ├── baseline_coverage.dat │ │ └── coverage.dat │ │ └── kt_Foo2ExampleATest │ │ ├── baseline_coverage.dat │ │ └── coverage.dat ├── js │ ├── BUILD │ ├── bar.ts │ ├── bar_test.js │ ├── foo.ts │ └── foo_test.js ├── jvm │ ├── BUILD │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── hchauvin │ │ │ │ └── bazelcoverageexample │ │ │ │ ├── Foo.java │ │ │ │ └── Foo2.java │ │ └── kotlin │ │ │ └── com │ │ │ └── github │ │ │ └── hchauvin │ │ │ └── bazelcoverageexample │ │ │ ├── Foo2Kotlin.kt │ │ │ └── FooKotlin.kt │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── hchauvin │ │ │ └── bazelcoverageexample │ │ │ ├── ExampleATest.java │ │ │ ├── ExampleBTest.java │ │ │ ├── ExampleCTest.java │ │ │ └── Foo2ExampleATest.java │ │ └── kotlin │ │ └── com │ │ └── github │ │ └── hchauvin │ │ └── bazelcoverageexample │ │ ├── ExampleAKotlinTest.kt │ │ └── Foo2ExampleAKotlinTest.kt ├── test_golden.sh └── update_golden.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | *.bak 3 | node_modules 4 | gh-pages 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/WORKSPACE -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/lint.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/package.json -------------------------------------------------------------------------------- /private/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/private/BUILD -------------------------------------------------------------------------------- /private/format.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/private/format.bzl -------------------------------------------------------------------------------- /private/pylint_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/private/pylint_bin.py -------------------------------------------------------------------------------- /private/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/private/requirements.txt -------------------------------------------------------------------------------- /report/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/BUILD -------------------------------------------------------------------------------- /report/bazel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/bazel.py -------------------------------------------------------------------------------- /report/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/defs.bzl -------------------------------------------------------------------------------- /report/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/generator.py -------------------------------------------------------------------------------- /report/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/go.py -------------------------------------------------------------------------------- /report/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/main.py -------------------------------------------------------------------------------- /report/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/report/normalize.py -------------------------------------------------------------------------------- /test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/BUILD -------------------------------------------------------------------------------- /test/R/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/BUILD -------------------------------------------------------------------------------- /test/R/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/DESCRIPTION -------------------------------------------------------------------------------- /test/R/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/LICENSE -------------------------------------------------------------------------------- /test/R/NAMESPACE: -------------------------------------------------------------------------------- 1 | exportPattern("^[^\\.]") 2 | 3 | useDynLib(exampleD) -------------------------------------------------------------------------------- /test/R/R/fn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/R/fn.R -------------------------------------------------------------------------------- /test/R/ccdep/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/ccdep/BUILD -------------------------------------------------------------------------------- /test/R/ccdep/ccdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/ccdep/ccdep.c -------------------------------------------------------------------------------- /test/R/ccdep/ccdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/ccdep/ccdep.h -------------------------------------------------------------------------------- /test/R/src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/src/Makevars -------------------------------------------------------------------------------- /test/R/src/fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/src/fn.c -------------------------------------------------------------------------------- /test/R/src/fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/src/fn.h -------------------------------------------------------------------------------- /test/R/src/lib/getCharacter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/src/lib/getCharacter.c -------------------------------------------------------------------------------- /test/R/src/lib/getCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/src/lib/getCharacter.h -------------------------------------------------------------------------------- /test/R/tests/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/R/tests/test.R -------------------------------------------------------------------------------- /test/clang/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/BUILD -------------------------------------------------------------------------------- /test/clang/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/bar.c -------------------------------------------------------------------------------- /test/clang/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/bar.h -------------------------------------------------------------------------------- /test/clang/bar_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/bar_test.c -------------------------------------------------------------------------------- /test/clang/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/foo.c -------------------------------------------------------------------------------- /test/clang/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/foo.h -------------------------------------------------------------------------------- /test/clang/foo_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/clang/foo_test.c -------------------------------------------------------------------------------- /test/go/bar/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/go/bar/BUILD.bazel -------------------------------------------------------------------------------- /test/go/bar/bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/go/bar/bar.go -------------------------------------------------------------------------------- /test/go/bar/bar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/go/bar/bar_test.go -------------------------------------------------------------------------------- /test/go/foo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/go/foo/BUILD.bazel -------------------------------------------------------------------------------- /test/go/foo/foo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/go/foo/foo.go -------------------------------------------------------------------------------- /test/go/foo/foo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/go/foo/foo_test.go -------------------------------------------------------------------------------- /test/golden/test/go/bar/go_default_test/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/go/bar/go_default_test/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/go/bar/go_default_test/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/go/foo/go_default_test/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/go/foo/go_default_test/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/go/foo/go_default_test/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/js/bar/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/js/bar_test/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/js/bar_test/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/js/bar_test/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/js/foo/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/js/foo_test/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/js/foo_test/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/js/foo_test/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java/baseline_coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java/baseline_coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java2/baseline_coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java2/baseline_coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_ExampleATest/baseline_coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_ExampleATest/baseline_coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_ExampleATest/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_ExampleATest/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_ExampleBTest/baseline_coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_ExampleBTest/baseline_coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_ExampleBTest/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_ExampleBTest/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_ExampleCTest/baseline_coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_ExampleCTest/baseline_coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_ExampleCTest/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_ExampleCTest/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_Foo2ExampleATest/baseline_coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_Foo2ExampleATest/baseline_coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/java_Foo2ExampleATest/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/java_Foo2ExampleATest/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/kt/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/jvm/kt2/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/jvm/kt_ExampleATest/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/jvm/kt_ExampleATest/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/kt_ExampleATest/coverage.dat -------------------------------------------------------------------------------- /test/golden/test/jvm/kt_Foo2ExampleATest/baseline_coverage.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/golden/test/jvm/kt_Foo2ExampleATest/coverage.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/golden/test/jvm/kt_Foo2ExampleATest/coverage.dat -------------------------------------------------------------------------------- /test/js/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/js/BUILD -------------------------------------------------------------------------------- /test/js/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/js/bar.ts -------------------------------------------------------------------------------- /test/js/bar_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/js/bar_test.js -------------------------------------------------------------------------------- /test/js/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/js/foo.ts -------------------------------------------------------------------------------- /test/js/foo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/js/foo_test.js -------------------------------------------------------------------------------- /test/jvm/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/BUILD -------------------------------------------------------------------------------- /test/jvm/src/main/java/com/github/hchauvin/bazelcoverageexample/Foo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/main/java/com/github/hchauvin/bazelcoverageexample/Foo.java -------------------------------------------------------------------------------- /test/jvm/src/main/java/com/github/hchauvin/bazelcoverageexample/Foo2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/main/java/com/github/hchauvin/bazelcoverageexample/Foo2.java -------------------------------------------------------------------------------- /test/jvm/src/main/kotlin/com/github/hchauvin/bazelcoverageexample/Foo2Kotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/main/kotlin/com/github/hchauvin/bazelcoverageexample/Foo2Kotlin.kt -------------------------------------------------------------------------------- /test/jvm/src/main/kotlin/com/github/hchauvin/bazelcoverageexample/FooKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/main/kotlin/com/github/hchauvin/bazelcoverageexample/FooKotlin.kt -------------------------------------------------------------------------------- /test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/ExampleATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/ExampleATest.java -------------------------------------------------------------------------------- /test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/ExampleBTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/ExampleBTest.java -------------------------------------------------------------------------------- /test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/ExampleCTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/ExampleCTest.java -------------------------------------------------------------------------------- /test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/Foo2ExampleATest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/test/java/com/github/hchauvin/bazelcoverageexample/Foo2ExampleATest.java -------------------------------------------------------------------------------- /test/jvm/src/test/kotlin/com/github/hchauvin/bazelcoverageexample/ExampleAKotlinTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/test/kotlin/com/github/hchauvin/bazelcoverageexample/ExampleAKotlinTest.kt -------------------------------------------------------------------------------- /test/jvm/src/test/kotlin/com/github/hchauvin/bazelcoverageexample/Foo2ExampleAKotlinTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/jvm/src/test/kotlin/com/github/hchauvin/bazelcoverageexample/Foo2ExampleAKotlinTest.kt -------------------------------------------------------------------------------- /test/test_golden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/test_golden.sh -------------------------------------------------------------------------------- /test/update_golden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/test/update_golden.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchauvin/bazel-coverage-report/HEAD/yarn.lock --------------------------------------------------------------------------------