supercov 0.0.47-x86_64-linux-gnu → 0.0.49-x86_64-linux-gnu
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/lib/supercov.rb +1 -1
- data/libexec/supercov +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 245c41fb3107978aa9b9bedc39f9f0b4c01a6f0d89548b8382d65218783c3515
|
|
4
|
+
data.tar.gz: bf24661a9e3b0762ae6a61fd7971ea7c75abfdaf9562f46c18786ea88a94ea7e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8310e0b3243781493567395641c0d997d8befb5c9560e028b367415497cf22778ed5fd61723b58eef0f11fdd32a830d847f5abcd0aef60981500d64b5d74daef
|
|
7
|
+
data.tar.gz: 439144d2265a646d6527aec049d713374b245afc87cca39856c7eeee33d7fd518a914466c3909f5ba63661a5f4adfd9947f895cfb0ab00232c1c788a8a73fbaf
|
data/README.md
CHANGED
|
@@ -152,11 +152,14 @@ cargo binstall supercov && supercov -- cargo test # crates.io
|
|
|
152
152
|
| Rust | Available | `npx supercov -- cargo test` |
|
|
153
153
|
| Python | Available | `npx supercov -- pytest` |
|
|
154
154
|
| Ruby | Available | `npx supercov -- rspec` |
|
|
155
|
+
| Go | Available | `npx supercov -- go test ./...` |
|
|
156
|
+
| Java | Available | `npx supercov -- mvn test` |
|
|
157
|
+
| Kotlin | Available | `npx supercov -- ./gradlew test` |
|
|
155
158
|
| Zig | Coming soon | — |
|
|
156
159
|
| PHP | Coming soon | — |
|
|
157
160
|
| C | Coming soon | — |
|
|
158
161
|
|
|
159
|
-
Supercov requires Node.js 22 or newer. Rust support currently uses Rust 1.95; cargo-nextest 0.9.138 and 0.9.140 are supported. Python support requires CPython 3.12 or newer and measures pytest and unittest runs. Ruby support requires Ruby 3.3 or newer (3.4 or newer for full measurement) and measures RSpec, Minitest, test-unit and Cucumber runs.
|
|
162
|
+
Supercov requires Node.js 22 or newer. Rust support currently uses Rust 1.95; cargo-nextest 0.9.138 and 0.9.140 are supported. Python support requires CPython 3.12 or newer and measures pytest and unittest runs. Ruby support requires Ruby 3.3 or newer (3.4 or newer for full measurement) and measures RSpec, Minitest, test-unit and Cucumber runs. Go support requires Go 1.22 or newer and measures `go test`. Java and Kotlin support requires a JDK 17 or newer with Maven or Gradle, and measures every JUnit Platform engine -- JUnit 5, JUnit 4 through Vintage, Kotest and Spock -- as well as TestNG.
|
|
160
163
|
|
|
161
164
|
## Supported operating systems and architectures
|
|
162
165
|
|
|
@@ -168,7 +171,7 @@ The CLI is a single native binary. `npx supercov` selects the build for the mach
|
|
|
168
171
|
| Linux | arm64, x64 | glibc 2.28 or newer (Debian 10, Ubuntu 18.10, RHEL 8 and later), or musl (Alpine); chosen automatically |
|
|
169
172
|
| Windows | arm64, x64 | Windows 10 or newer |
|
|
170
173
|
|
|
171
|
-
JavaScript, TypeScript, Python, Ruby and
|
|
174
|
+
JavaScript, TypeScript, Python, Ruby, Rust, Go, Java and Kotlin suites are verified on Linux, macOS and Windows -- CPython 3.12, 3.13 and 3.14, Ruby 3.3, 3.4 and 4.0, and Go 1.22 and 1.25 on every one, and JDK 17 and 21 on every one that has them (Temurin publishes no 17 for arm64 Windows, so that pairing is 21 alone). Containers, VMs, and remote executors run the same Linux builds. Every release publishes the same binaries to npm, PyPI (`supercov-cli`, a wheel per platform) and RubyGems (`supercov`, a gem per platform except arm64 Windows, which Ruby has no platform for), and the source to crates.io (`supercov`).
|
|
172
175
|
|
|
173
176
|
## Supported test suites
|
|
174
177
|
|
data/lib/supercov.rb
CHANGED
data/libexec/supercov
CHANGED
|
Binary file
|