Skip to content

Commit 68f6607

Browse files
committed
Fix test_verdi_status
1 parent 439a093 commit 68f6607

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_common.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ def test_notebook_service_available(notebook_service):
1010

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

1619

1720
def test_ssh_agent_is_running(aiidalab_exec, nb_user):

0 commit comments

Comments
 (0)