We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a565e commit e6fab3cCopy full SHA for e6fab3c
tests/test_aiidalab_apps.py
@@ -35,6 +35,11 @@ def _generate_aiidalab_install_output(package_name):
35
if pkg:
36
app_name = pkg.split("@")[0]
37
aiidalab_exec(f"aiidalab uninstall --yes --force {app_name}", user=nb_user)
38
+ # TODO: Remove this after solving https://github.com/aiidalab/aiidalab/issues/405
39
+ pkg_name = app_name
40
+ if app_name.lower() == "quantum-espresso":
41
+ pkg_name = "aiidalab-qe"
42
+ aiidalab_exec(f"pip uninstall --yes {pkg_name}", user=nb_user)
43
44
45
@pytest.mark.parametrize("package_name", ["aiidalab-widgets-base", "quantum-espresso"])
0 commit comments