Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jul 17, 2024
1 parent f1afae2 commit 9f351bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_aiidalab_apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ def _generate_aiidalab_install_output(package_name):
if pkg:
app_name = pkg.split("@")[0]
aiidalab_exec(f"aiidalab uninstall --yes --force {app_name}", user=nb_user)
# TODO: Remove this after solving https://github.com/aiidalab/aiidalab/issues/405
pkg_name = app_name
if app_name.lower() == "quantum-espresso":
pkg_name = "aiidalab-qe"
aiidalab_exec(f"pip uninstall --yes {pkg_name}", user=nb_user)


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

0 comments on commit 9f351bc

Please sign in to comment.