Skip to content

Commit e6fab3c

Browse files
authored
Fix integration test (#481)
1 parent 36a565e commit e6fab3c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/test_aiidalab_apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ def _generate_aiidalab_install_output(package_name):
3535
if pkg:
3636
app_name = pkg.split("@")[0]
3737
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)
3843

3944

4045
@pytest.mark.parametrize("package_name", ["aiidalab-widgets-base", "quantum-espresso"])

0 commit comments

Comments
 (0)