Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

### Subworkflows

- update test to new upstream subworkflow structure ([#4038](https://github.com/nf-core/tools/pull/4038))

### Pipeline template

#### Version updates
Expand Down
3 changes: 0 additions & 3 deletions tests/subworkflows/test_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,6 @@ def test_update_change_of_included_modules(self):
# Check that tabix/bgziptabix is not there
assert "tabix/bgziptabix" not in mod_json["repos"][NF_CORE_MODULES_REMOTE]["modules"][NF_CORE_MODULES_NAME]
assert not Path(self.pipeline_dir, "modules", NF_CORE_MODULES_NAME, "tabix/bgziptabix").is_dir()
# Check that tabix/tabix is there
assert "tabix/tabix" in mod_json["repos"][NF_CORE_MODULES_REMOTE]["modules"][NF_CORE_MODULES_NAME]
assert Path(self.pipeline_dir, "modules", NF_CORE_MODULES_NAME, "tabix/tabix").is_dir()
# Check that ensemblevep is not there but instead we have ensemblevep/vep (due to a file re-naming)
assert "ensemblvep" not in mod_json["repos"][NF_CORE_MODULES_REMOTE]["modules"][NF_CORE_MODULES_NAME]
assert "ensemblvep/vep" in mod_json["repos"][NF_CORE_MODULES_REMOTE]["modules"][NF_CORE_MODULES_NAME]
Expand Down
Loading