featureparity 0.0.11 → 0.0.12
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/lib/fp/commands/ci_report.rb +14 -0
- data/lib/fp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b98c13a1f3911211fc2d07f23ad5917f6d6326563abda2b31bdb52840750f26
|
|
4
|
+
data.tar.gz: ec5cb53697d89763e41735deea90ba9342905b5622d5d3c43187782bef3205b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 404d64805e0a04b939f920ca3ecd5fbc6765ad4f0e11e62f396ad3794eea8b4c500168a474f06f6df914d088a517a735b0cc801b3bfb73b2733722ac0e6eae0e
|
|
7
|
+
data.tar.gz: a80c7661ab55355e9d9ab13ab2430ea2b83d52c41f3185793cf4a1b39671507f5d4f3227d1540d5be305194ad42ea99c0292e651283562b7ac71487d0baf5768
|
|
@@ -140,6 +140,20 @@ module Fp
|
|
|
140
140
|
'been updated by this run.')
|
|
141
141
|
end
|
|
142
142
|
|
|
143
|
+
# Orphan markers on the ingest path. `fp check --junit`'s preview already surfaces
|
|
144
|
+
# a marker that binds to no requirement as a run-level finding, but `fp ci-report`
|
|
145
|
+
# dropped the very same markers into a buried `puts` line nobody reads in a
|
|
146
|
+
# collapsed CI step — the silent-drop #115 set out to kill, still alive on the
|
|
147
|
+
# path CI actually records evidence through. Annotate them the same way, so a
|
|
148
|
+
# test that *looks* bound but proves nothing shows up on the run rather than
|
|
149
|
+
# vanishing. FP surfaces the orphan; it does not invent a requirement from it.
|
|
150
|
+
unless totals[:unknown].empty?
|
|
151
|
+
orphans = totals[:unknown].uniq
|
|
152
|
+
annotate("fp ci-report resolved #{orphans.length} orphan marker(s) — an fp:<slug> that " \
|
|
153
|
+
"matches no requirement in this project, so no evidence was recorded for it: " \
|
|
154
|
+
"#{orphans.join(', ')}. Propose the requirement (fp propose) or fix the slug.")
|
|
155
|
+
end
|
|
156
|
+
|
|
143
157
|
emit_summary(opts, totals)
|
|
144
158
|
end
|
|
145
159
|
|
data/lib/fp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: featureparity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stowzilla
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-http
|