Skip to content

Fix COVERAGE check#2827

Merged
brentleyjones merged 1 commit intomasterfrom
bj/fix-coverage-check
Nov 18, 2025
Merged

Fix COVERAGE check#2827
brentleyjones merged 1 commit intomasterfrom
bj/fix-coverage-check

Conversation

@brentleyjones
Copy link
Copy Markdown
Collaborator

if [[ "${COVERAGE:-}" -ne 1 || "${APPLE_COVERAGE:-}" -ne 1 ]]; then

wasn’t properly changed. Applying De Morgan's laws means we needed to change the || to &&.

```
if [[ "${COVERAGE:-}" -ne 1 || "${APPLE_COVERAGE:-}" -ne 1 ]]; then
```

wasn’t properly changed. Applying De Morgan's laws means we needed to change the `||` to `&&`.

Signed-off-by: Brentley Jones <[email protected]>
@brentleyjones brentleyjones enabled auto-merge (squash) November 18, 2025 19:58
@luispadron
Copy link
Copy Markdown
Contributor

Failed on a flaky test timing out

@brentleyjones brentleyjones merged commit c7a922e into master Nov 18, 2025
9 of 11 checks passed
@brentleyjones brentleyjones deleted the bj/fix-coverage-check branch November 18, 2025 20:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants