Skip to content

Commit

Permalink
Fix test_verdi_status
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jul 21, 2024
1 parent 439a093 commit 68f6607
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ def test_notebook_service_available(notebook_service):

def test_verdi_status(aiidalab_exec, nb_user):
output = aiidalab_exec("verdi status", user=nb_user).strip()
assert "Connected to RabbitMQ" in output
for status in ("version", "config", "profile", "storage", "broker", "daemon"):
assert f"✔ {status}" in output
assert "/home/jovyan/.aiida" in output
assert "Daemon is running" in output
assert "Unable to connect to broker" not in output


def test_ssh_agent_is_running(aiidalab_exec, nb_user):
Expand Down

0 comments on commit 68f6607

Please sign in to comment.