supercov 0.0.48-x86_64-linux-gnu → 0.0.50-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e504361c9e923266a5cd39b3b2e1a5862ef19683ae24efca833c747629d1aeb
4
- data.tar.gz: fdbd9f3c087b420b2a1c294fb234c370a4875e543b656add6bf87960bdacdc94
3
+ metadata.gz: ebe5c5d8a7c9bcefe099001d1bc13e8254065f1991d3e3ee73da83bacbb4e74d
4
+ data.tar.gz: 76c337c4c5061dc75921f1112819e9cc052f09aafcb2ec96cf8e59e543402e3b
5
5
  SHA512:
6
- metadata.gz: f83071ee32d125d6a22aa655f3bd698e7e8985ce4ce36311d959e313c4d017291167cb3762e1636301d25c2af94d696a728f8ee7076f4b8d62110348592de07c
7
- data.tar.gz: bf9a1cac46f3510f1398cc0bf44b1628717f3f6143add1f54793321e38f17b4153f45dfbea1db87e59f9de1efe26ea755ed3a82a915002e95d5f6bf85db4604f
6
+ metadata.gz: f8e382d1f6f9c83d8ca05e788ed462dc79b1825170fa62d3dbf1e69bda875ecd7216f85212aa55413fa0c0f57dfde8e67b180858c72a53edc9124dbf6a4477a6
7
+ data.tar.gz: a4d10f254da60ba99771f50e6ecf06504c64f593a4f1b8cb7ba3dff450e7b5e05684dfc073957059f66a2b4ab7fa3f923b8ac630bc53b16e9aaa855e73a5da14
data/README.md CHANGED
@@ -19,6 +19,10 @@ to add a test in your own project, with a recorded example to follow along.
19
19
  npx supercov -- npm test
20
20
  ```
21
21
 
22
+ Other ways in, all the same binary at the same version: `brew install
23
+ supercorp-ai/tap/supercov`, or for a Go project `go run
24
+ github.com/supercorp-ai/supercov/cmd/supercov@latest`.
25
+
22
26
  Everything after `--` is your test command. Supercov runs it without changing your source, tests, runner configuration, or normal build output.
23
27
 
24
28
  Then ask what is still uncovered:
@@ -152,11 +156,14 @@ cargo binstall supercov && supercov -- cargo test # crates.io
152
156
  | Rust | Available | `npx supercov -- cargo test` |
153
157
  | Python | Available | `npx supercov -- pytest` |
154
158
  | Ruby | Available | `npx supercov -- rspec` |
159
+ | Go | Available | `npx supercov -- go test ./...` |
160
+ | Java | Available | `npx supercov -- mvn test` |
161
+ | Kotlin | Available | `npx supercov -- ./gradlew test` |
155
162
  | Zig | Coming soon | — |
156
163
  | PHP | Coming soon | — |
157
164
  | C | Coming soon | — |
158
165
 
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.
166
+ 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
167
 
161
168
  ## Supported operating systems and architectures
162
169
 
@@ -168,7 +175,7 @@ The CLI is a single native binary. `npx supercov` selects the build for the mach
168
175
  | Linux | arm64, x64 | glibc 2.28 or newer (Debian 10, Ubuntu 18.10, RHEL 8 and later), or musl (Alpine); chosen automatically |
169
176
  | Windows | arm64, x64 | Windows 10 or newer |
170
177
 
171
- JavaScript, TypeScript, Python, Ruby and Rust suites are verified on Linux, macOS and Windows -- CPython 3.12, 3.13 and 3.14, and Ruby 3.3, 3.4 and 4.0 on every one. 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`).
178
+ 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
179
 
173
180
  ## Supported test suites
174
181
 
data/lib/supercov.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Supercov
4
- VERSION = "0.0.48"
4
+ VERSION = "0.0.50"
5
5
  end
data/libexec/supercov CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: supercov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.48
4
+ version: 0.0.50
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Supercorp