File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ jobs:
124
124
(map(.endpoints .covered | to_entries | sort_by(.value) | map((.value[] | ascii_upcase) + " " + .key)) | .[] | to_entries | map({path: .value, covered: true})) as $covered |
125
125
$covered+$uncovered |
126
126
sort_by(.path) |
127
- map(if .covered then "-[x] \(.path)" else "-[ ] \(.path)" end) |
127
+ map(if .covered then "- [x] \(.path)" else "- [ ] \(.path)" end) |
128
128
.[]
129
129
' $AFTER_COVERAGE | jq -r
130
130
Original file line number Diff line number Diff line change @@ -126,14 +126,16 @@ jobs:
126
126
127
127
- name : Display Missing Test Paths
128
128
run : |
129
- jq -sc '
130
- (map(.operations) | add | unique) as $all |
131
- (map(.evaluated_operations) | add | unique) as $evaluated |
132
- $all-$evaluated |
133
- sort_by(.path) |
134
- .[] |
135
- "\(.method) \(.path)"
136
- ' $(find ./ -name "test-spec-coverage-*.json")
129
+ jq -r -sc '
130
+ (map(.operations) | add | unique) as $all |
131
+ (map(.evaluated_operations) | add | unique) as $evaluated |
132
+ ($all-$evaluated | map({path: .path, method: .method, evaluated: false})) as $unevaluated |
133
+ ($evaluated | map({path: .path, method: .method, evaluated: true})) as $evaluated |
134
+ $evaluated+$unevaluated |
135
+ sort_by(.path) |
136
+ map(if .evaluated then "- [x] \(.method) \(.path)" else "- [ ] \(.method) \(.path)" end) |
137
+ .[]
138
+ ' $(find ./ -name "test-spec-coverage-*.json")
137
139
138
140
- name : Combine Test Coverage Data
139
141
shell : bash -eo pipefail {0}
You can’t perform that action at this time.
0 commit comments