From 3e1fc22044a07da1c7e8a36a8a56fb0d7cf4b45a Mon Sep 17 00:00:00 2001 From: vinkj1 Date: Tue, 14 Feb 2023 16:52:18 +0100 Subject: [PATCH] Update image versions and tests --- tests/test_pytorch_env.py | 2 +- tests/test_tensorflow_env.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_pytorch_env.py b/tests/test_pytorch_env.py index 2aaac789e..2e730cd6a 100644 --- a/tests/test_pytorch_env.py +++ b/tests/test_pytorch_env.py @@ -87,7 +87,7 @@ def test_dockerfile(self): lines = list(map(lambda x: x.strip(), fin.readlines())) dockerfile_text = Path(dockerfile_path).read_text() - assert lines[1] == "FROM registry.git.vgregion.se/aiplattform/images/pytorch:0.3.1" + assert lines[1] == "FROM registry.git.vgregion.se/aiplattform/images/pytorch:0.3.2" assert lines[-1] == 'WORKDIR /workspace' assert "ADD http://aiav2.vgregion.se/VGC%20Root%20CA%20v2.crt /tmp/vgc_root.der" in lines assert "ADD http://aiav2.vgregion.se/VGC%20Issuing%201%20CA%20v2.crt /tmp/vgc_issuing1.der" in lines diff --git a/tests/test_tensorflow_env.py b/tests/test_tensorflow_env.py index 5933dd39a..22df18204 100644 --- a/tests/test_tensorflow_env.py +++ b/tests/test_tensorflow_env.py @@ -87,7 +87,7 @@ def test_dockerfile(self): lines = list(map(lambda x: x.strip(), fin.readlines())) dockerfile_text = Path(dockerfile_path).read_text() - assert lines[0] == "FROM registry.git.vgregion.se/aiplattform/images/tensorflow:0.2.0" + assert lines[0] == "FROM registry.git.vgregion.se/aiplattform/images/tensorflow:0.2.1" assert lines[-1] == 'WORKDIR /workspace' assert "ADD http://aiav2.vgregion.se/VGC%20Root%20CA%20v2.crt /tmp/vgc_root.der" in lines assert "ADD http://aiav2.vgregion.se/VGC%20Issuing%201%20CA%20v2.crt /tmp/vgc_issuing1.der" in lines