Skip to content

Commit bb076af

Browse files
committed
Bump aiida-core version
1 parent 45ca352 commit bb076af

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"default": "3.9.13"
1111
},
1212
"AIIDA_VERSION": {
13-
"default": "2.5.1"
13+
"default": "2.6.1"
1414
},
1515
"AIIDALAB_VERSION": {
1616
"default": "24.07.0"

stack/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ENV EXTRA_APT_PACKAGES "curl rsync"
1717
# but we install it here so that we don't have to invoke apt multiple times.
1818
ARG TARGETARCH
1919
RUN if [ "$TARGETARCH" = "arm64" ]; then \
20-
EXTRA_APT_PACKAGES="erlang build-essentials libhdf5-serial-dev pkg-config ${EXTRA_APT_PACKAGES}"; \
20+
EXTRA_APT_PACKAGES="erlang build-essential libhdf5-serial-dev pkg-config ${EXTRA_APT_PACKAGES}"; \
2121
fi;\
2222
apt-get update --yes && \
2323
apt-get install --yes --no-install-recommends ${EXTRA_APT_PACKAGES} && \

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)