From 7397caa2d0bd69fcd6353d2d92ec7d9488e17e62 Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Tue, 2 Jul 2024 11:36:40 +0100 Subject: [PATCH] Update aiida-core to 2.6.1 --- build.json | 2 +- tests/test_common.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/build.json b/build.json index c5d110f4..6c0180b5 100644 --- a/build.json +++ b/build.json @@ -10,7 +10,7 @@ "default": "3.9.13" }, "AIIDA_VERSION": { - "default": "2.5.1" + "default": "2.6.2" }, "AIIDALAB_VERSION": { "default": "24.07.0" diff --git a/tests/test_common.py b/tests/test_common.py index fad551ee..a1882d45 100644 --- a/tests/test_common.py +++ b/tests/test_common.py @@ -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):