Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds the ability to create test runs in Testomat.io based on coverage reports without immediately executing tests. This enables creating manual or automated runs from coverage data, which is particularly useful for launching manual tests based on coverage analysis or scheduling automated tests for later execution.
Key changes:
- Made the command argument optional in the CLI
runcommand, allowing run creation without test execution - Extended coverage pipe to distinguish between suite IDs and test IDs, storing them separately and including both in run configuration
- Added coverage scope display to GitHub PR comments for manual runs, showing affected test and suite counts
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 10 comments.
| File | Description |
|---|---|
| src/bin/cli.js | Made command argument optional and added logic to create runs without executing tests, including appropriate messaging based on run kind |
| src/pipe/testomatio.js | Added support for passing coverage configuration (tests and suites) and description to run creation parameters, plus storing runKind in the pipe store |
| src/pipe/github.js | Added coverage scope section to GitHub PR comments for manual runs, displaying counts of affected tests and suites |
| src/pipe/coverage.js | Enhanced to separately track suite IDs vs test IDs, store coverage configuration and description in pipe store, and added helper methods for building run descriptions and getting current Git branch |
Collaborator
|
test:
|
olexandr13
approved these changes
Jan 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When we don't want to launch tests right now but we want to create a run in Testomat.io with corresponding tests listed
This is important when we want to launch manual tests based on report provided from coverage pipe
Ability to create new manual or end2end runs from coverage reports:
Manual run
Automated run
See also: https://github.com/testomatio/coverage-agent