Skip to content
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

Fix tests after modifying the GitLab org-path to nf-core-test #2239

Merged
merged 13 commits into from
Apr 20, 2023
Prev Previous commit
Next Next commit
fix path for test_modules_remove_multiqc_from_gitlab
mirpedrol committed Apr 19, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 82ac98b18bd0c6224dd37d8e4dd30d70ec430b0e
2 changes: 1 addition & 1 deletion tests/modules/remove.py
Original file line number Diff line number Diff line change
@@ -17,6 +17,6 @@ def test_modules_remove_trimgalore_uninstalled(self):
def test_modules_remove_multiqc_from_gitlab(self):
"""Test removing multiqc module after installing it from an alternative source"""
self.mods_install_gitlab.install("multiqc")
module_path = os.path.join(self.mods_install_gitlab.dir, "modules", "nf-core", "multiqc")
module_path = os.path.join(self.mods_install_gitlab.dir, "modules", "nf-core-test", "multiqc")
assert self.mods_remove_gitlab.remove("multiqc", force=True)
assert os.path.exists(module_path) is False