-
Notifications
You must be signed in to change notification settings - Fork 8
[ENH] Add profile full_pipeline + fix stubrun #98
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
base: dev
Are you sure you want to change the base?
Changes from all commits
c365f18
6a5b5aa
e63d92d
c780ca3
ef8b0d8
d463ae8
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 |
|---|---|---|
|
|
@@ -11,4 +11,7 @@ | |
| */ | ||
|
|
||
| process { | ||
| withName: '.*' { | ||
|
Collaborator
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. What is this for? Some tasks will probably fail with a single CPU.
Collaborator
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. It's also not specific. Following docs, it falls off behind all other selectors. Report if it's cornering use-cases correctly. From my gist, this gets applied if no other config gets loaded |
||
| cpus = 1 | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ config { | |
| ignore '.venv/**/*' | ||
|
|
||
| // run all test with defined profile(s) from the main nextflow.config | ||
| profile "test,full_pipeline" | ||
| profile "test,full_pipeline,stubRun" | ||
|
Collaborator
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. Syntax opinion ? (Follow snake_case) |
||
|
|
||
| // list of filenames or patterns that should be trigger a full test run | ||
| triggers 'nextflow.config', 'nf-test.config', 'conf/test.config', 'tests/nextflow.config', 'tests/.nftignore' | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.