Skip to content

ci: use prove directly instead of make test fallback#125

Merged
timlegge merged 1 commit into
cpan-authors:mainfrom
atoomic:koan.atoomic/ci-simplify-test-command
Mar 20, 2026
Merged

ci: use prove directly instead of make test fallback#125
timlegge merged 1 commit into
cpan-authors:mainfrom
atoomic:koan.atoomic/ci-simplify-test-command

Conversation

@Koan-Bot
Copy link
Copy Markdown
Contributor

@Koan-Bot Koan-Bot commented Mar 19, 2026

What

Replace make && ( make test || prove -wbvm t/*.t ) with make && prove -wbvm t/*.t in all CI jobs.

Why

The old pattern ran tests twice on failure: first make test (minimal TAP output), then prove -wbvm (verbose). This wasted CI minutes and flooded logs with redundant output — making actual failures harder to find.

How

Removed the ( make test || ... ) wrapper in 4 jobs (ubuntu, perl, windows, macos). The openssl-matrix job already used the clean form.

Testing

  • prove -wbvm t/*.t is strictly more informative than make test — no behavior change on success
  • On failure, you now get one verbose run instead of two

🤖 Generated with Claude Code


Quality Report

Changes: 1 file changed, 4 insertions(+), 4 deletions(-)

Code scan: clean

Tests: passed (OK)

Branch hygiene: clean

Generated by Kōan post-mission quality pipeline

Replace `make && ( make test || prove -wbvm t/*.t )` with
`make && prove -wbvm t/*.t` in all CI jobs.

The old pattern ran tests twice on failure: first via `make test`
(TAP summary only), then via `prove -wbvm` (verbose). This doubled
CI time on failures and flooded logs with redundant output.

Since `prove -wbvm` already provides better diagnostics than
`make test`, just use it directly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy link
Copy Markdown
Member

@timlegge timlegge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine. Logs are longer an event of success but I really really look at the logs to see failures

@atoomic atoomic marked this pull request as ready for review March 19, 2026 12:48
@timlegge timlegge merged commit 65cef71 into cpan-authors:main Mar 20, 2026
81 checks passed
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