supercov 0.0.38 → 0.0.39
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.
- package/README.md +3 -3
- package/docs/getting-started.md +1 -2
- package/package.json +13 -14
package/README.md
CHANGED
|
@@ -110,10 +110,10 @@ The same binary ships through each language's own package manager, at the same v
|
|
|
110
110
|
npx supercov -- npm test # npm
|
|
111
111
|
uvx --from supercov-cli supercov -- pytest # PyPI
|
|
112
112
|
gem install supercov && supercov -- bundle exec rspec # RubyGems
|
|
113
|
-
cargo
|
|
113
|
+
cargo binstall supercov && supercov -- cargo test # crates.io
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
-
`pip install supercov-cli` and `gem install supercov` install a wheel or gem that carries the binary for your platform; nothing is compiled.
|
|
116
|
+
`pip install supercov-cli` and `gem install supercov` install a wheel or gem that carries the binary for your platform; nothing is compiled. `cargo binstall` downloads that same binary from the GitHub release, while plain `cargo install supercov` builds it from source and needs Rust 1.95.
|
|
117
117
|
|
|
118
118
|
## Supported languages
|
|
119
119
|
|
|
@@ -140,7 +140,7 @@ The CLI is a single native binary. `npx supercov` selects the build for the mach
|
|
|
140
140
|
| Linux | arm64, x64 | glibc 2.28 or newer (Debian 10, Ubuntu 18.10, RHEL 8 and later), or musl (Alpine); chosen automatically |
|
|
141
141
|
| Windows | arm64, x64 | Windows 10 or newer |
|
|
142
142
|
|
|
143
|
-
|
|
143
|
+
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`).
|
|
144
144
|
|
|
145
145
|
## Supported test suites
|
|
146
146
|
|
package/docs/getting-started.md
CHANGED
|
@@ -16,8 +16,7 @@ Supercov supports JavaScript, TypeScript, Rust, Python, and Ruby today.
|
|
|
16
16
|
You need:
|
|
17
17
|
|
|
18
18
|
- macOS (arm64 or x64), Linux (arm64 or x64, glibc 2.28 or newer or musl), or
|
|
19
|
-
Windows (arm64 or x64;
|
|
20
|
-
today);
|
|
19
|
+
Windows (arm64 or x64);
|
|
21
20
|
- Node.js 22 or newer;
|
|
22
21
|
- a test command that already works in the repository; and
|
|
23
22
|
- for Rust, the Rust 1.95 toolchain;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supercov",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.39",
|
|
4
4
|
"description": "Zero-edit, runner-aware coverage completeness for JavaScript, TypeScript, Rust, Python, and Ruby test suites",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -39,8 +39,6 @@
|
|
|
39
39
|
"check:rustc-backend-spike": "(cd spikes/rustc-backend && RUSTC_BOOTSTRAP=1 RUSTUP_TOOLCHAIN=1.95.0 cargo fmt --check && RUSTC_BOOTSTRAP=1 RUSTUP_TOOLCHAIN=1.95.0 cargo clippy --all-targets -- -D warnings)",
|
|
40
40
|
"test:rustc-backend-spike": "node scripts/rustc-backend-spike.mjs",
|
|
41
41
|
"test:rust-compiler-spikes": "cargo build -p supercov && node scripts/rust-libtest-companion-spike.mjs && node scripts/rust-async-attribution-spike.mjs && node scripts/rust-subprocess-attribution-spike.mjs && node scripts/rust-custom-harness-spike.mjs && node scripts/rust-libtest-builder-lifecycle-spike.mjs",
|
|
42
|
-
"test:rust-cargo-runner": "cargo build -p supercov && node scripts/rust-cargo-runner-integration.mjs",
|
|
43
|
-
"test:rust-nextest-runner": "cargo build -p supercov && node scripts/rust-nextest-runner-integration.mjs",
|
|
44
42
|
"test": "cargo test --workspace",
|
|
45
43
|
"test:runtime": "node --test tests/runtime/*.test.mjs",
|
|
46
44
|
"test:fixture": "cargo build -p supercov && node scripts/rust-fixture-matrix.mjs",
|
|
@@ -63,25 +61,26 @@
|
|
|
63
61
|
"test:test262": "cargo build --release -p supercov && node scripts/test262-equivalence.mjs",
|
|
64
62
|
"benchmark:check": "cargo build --release -p supercov && node scripts/rust-transform-benchmark.mjs",
|
|
65
63
|
"benchmark:python-monitoring": "cargo build -p supercov && node scripts/python-monitoring-benchmark.mjs",
|
|
66
|
-
"check": "cargo fmt --all -- --check && cargo clippy --workspace --all-targets -- -D warnings && npm run test && npm run test:runtime && npm run test:rust-assets && node scripts/package-preflight.mjs",
|
|
67
|
-
"release:check": "npm run check && npm run test:engine && npm run test:fixture && npm run test:watchdog && npm run test:engine-contract && npm run test:agent && npm run test:child-attribution && npm run test:host-loader && npm run test:python-monitoring && npm run test:ruby-coverage && npm run test:packed-npx && npm run test:clang-mcdc && npm run benchmark:check",
|
|
64
|
+
"check": "cargo fmt --all -- --check && cargo clippy --workspace --all-targets -- -D warnings && npm run test && npm run test:runtime && npm run test:rust-assets && node scripts/package-preflight.mjs && node scripts/verify-binstall-metadata.mjs --offline",
|
|
65
|
+
"release:check": "npm run check && npm run test:engine && npm run test:fixture && npm run test:watchdog && npm run test:engine-contract && npm run test:agent && npm run test:child-attribution && npm run test:host-loader && npm run test:python-monitoring && npm run test:ruby-coverage && npm run test:rust-public-cargo && npm run test:packed-npx && npm run test:clang-mcdc && npm run benchmark:check",
|
|
68
66
|
"release:bump": "node scripts/bump-version.mjs",
|
|
69
67
|
"prepack": "node scripts/package-preflight.mjs",
|
|
70
68
|
"prepublishOnly": "npm run release:check",
|
|
71
69
|
"test:child-attribution": "cargo build -p supercov && node scripts/rust-child-attribution-integration.mjs",
|
|
72
70
|
"test:host-loader": "cargo build -p supercov && node scripts/rust-host-loader-integration.mjs",
|
|
73
71
|
"test:python-monitoring": "cargo build -p supercov && node scripts/python-monitoring-integration.mjs",
|
|
74
|
-
"test:ruby-coverage": "cargo build -p supercov && node scripts/ruby-coverage-integration.mjs"
|
|
72
|
+
"test:ruby-coverage": "cargo build -p supercov && node scripts/ruby-coverage-integration.mjs",
|
|
73
|
+
"test:rust-public-cargo": "cargo build -p supercov && node scripts/rust-public-cargo-integration.mjs"
|
|
75
74
|
},
|
|
76
75
|
"optionalDependencies": {
|
|
77
|
-
"@supercov/cli-darwin-arm64": "0.0.
|
|
78
|
-
"@supercov/cli-darwin-x64": "0.0.
|
|
79
|
-
"@supercov/cli-linux-arm64-gnu": "0.0.
|
|
80
|
-
"@supercov/cli-linux-arm64-musl": "0.0.
|
|
81
|
-
"@supercov/cli-linux-x64-gnu": "0.0.
|
|
82
|
-
"@supercov/cli-linux-x64-musl": "0.0.
|
|
83
|
-
"@supercov/cli-win32-arm64": "0.0.
|
|
84
|
-
"@supercov/cli-win32-x64": "0.0.
|
|
76
|
+
"@supercov/cli-darwin-arm64": "0.0.39",
|
|
77
|
+
"@supercov/cli-darwin-x64": "0.0.39",
|
|
78
|
+
"@supercov/cli-linux-arm64-gnu": "0.0.39",
|
|
79
|
+
"@supercov/cli-linux-arm64-musl": "0.0.39",
|
|
80
|
+
"@supercov/cli-linux-x64-gnu": "0.0.39",
|
|
81
|
+
"@supercov/cli-linux-x64-musl": "0.0.39",
|
|
82
|
+
"@supercov/cli-win32-arm64": "0.0.39",
|
|
83
|
+
"@supercov/cli-win32-x64": "0.0.39"
|
|
85
84
|
},
|
|
86
85
|
"peerDependencies": {
|
|
87
86
|
"@playwright/test": ">=1.55.0",
|