-
Notifications
You must be signed in to change notification settings - Fork 74
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
Replace tags strategy with implicit 'tags in test' strategy #253
Changes from all commits
61e7662
34baed6
a6c34fc
76095d3
c325d8d
fe432bc
bcae51a
b1b117d
7d88962
c36a8aa
412b059
2f6a78a
f28a336
401f91d
6cdff1c
d490e6a
00c2ea0
4d2d566
6c00433
bc25627
8946e2d
cb4f0e6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,8 @@ nextflow_process { | |
name "Test process: MULTIQC_MAPPINGS_CONFIG" | ||
script "../main.nf" | ||
process "MULTIQC_MAPPINGS_CONFIG" | ||
tag "modules" | ||
tag "modules_local" | ||
tag "multiqc_mappings_config" | ||
|
||
tag "MULTIQC_MAPPINGS_CONFIG" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not for this PR- but if tag is becoming redundant with the process maybe we should talk to the nf-test folks about allowing nf-test to list processes/ workflows rather than tags? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's similar to what @adamrtalbot meant when creating this issue: askimed/nf-test#178 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct, I've suggested it as a feature. This was the behaviour in pytest-workflow as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Gotcha, sorry for the slow uptake |
||
|
||
test("Should run without failures") { | ||
|
||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,7 @@ nextflow_function { | |
|
||
name "Test Functions" | ||
script "subworkflows/local/utils_nfcore_fetchngs_pipeline/main.nf" | ||
tag 'subworkflows' | ||
tag 'utils_nfcore_fetchngs_pipeline' | ||
tag 'subworkflows/utils_nfcore_fetchngs_pipeline' | ||
tag "UTILS_NFCORE_FETCHNGS_PIPELINE" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @maxulysse is this the right tag? Too late on a Friday to confirm. Please check on Monday 😆 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes |
||
|
||
test("Function isSraId") { | ||
|
||
|
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maxulysse shall we put this in a separate file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry I don't understand what you meant by that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are supplementary existing tags. We can move this to a separate YAML, e.g.
.github/test_paths.yml
like we have tags now.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Further discussion - general consensus was it's all in one place if we leave it here. We can move it out later if we need to.