-
Notifications
You must be signed in to change notification settings - Fork 826
test: reduce duplicate coverage in pipeline tests #1648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pinin4fjords
wants to merge
4
commits into
dev
Choose a base branch
from
test/reduce-duplicate-coverage
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Skip processes that are already covered by default.nf.test to reduce redundant test execution while maintaining meaningful integration testing. Changes by test file: - sentieon_default: skip QC, StringTie, bigwig (Sentieon STAR ≈ STAR BAMs) - remove_ribo_rna: skip QC, StringTie, bigwig (rRNA removal doesn't change BAM structure) - min_mapped_reads: skip QC, StringTie, bigwig (sample filtering doesn't change BAMs) - featurecounts_group_type: skip QC, StringTie, bigwig (only counting differs) - hisat2: skip bigwig only (keep QC/StringTie for different BAM characteristics) - umi: skip StringTie, bigwig (keep QC for deduplicated BAM testing) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
|
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.
Summary
This PR reduces redundant process execution in pipeline-level tests by adding skip options to tests where the processes are already comprehensively covered by
default.nf.test.Principle
Skip processes only when their inputs are structurally unchanged from what's already tested elsewhere. Keep processes when the test creates meaningfully different inputs that warrant integration testing.
Changes by Test File
sentieon_defaultskip_qc,skip_stringtie,skip_bigwigremove_ribo_rnaskip_qc,skip_stringtie,skip_bigwigmin_mapped_readsskip_qc,skip_stringtie,skip_bigwigfeaturecounts_group_typeskip_qc,skip_stringtie,skip_bigwighisat2skip_bigwigonlyumiskip_stringtie,skip_bigwigTests Left Unchanged
Coverage Matrix (After Changes)
🤖 Generated with Claude Code