Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"default": "3.9.13"
},
"AIIDA_VERSION": {
"default": "2.5.1"
"default": "2.6.2"
},
"AIIDALAB_VERSION": {
"default": "24.07.0"
Expand Down
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