From 5d39a4c6a48da03f5122792d6b9e178701098fc0 Mon Sep 17 00:00:00 2001 From: ThibaultFy <50656860+ThibaultFy@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:55:47 +0200 Subject: [PATCH] chore: remove minimal and workflow substra-tools images (#389) Signed-off-by: ThibaultFy <50656860+ThibaultFy@users.noreply.github.com> --- CHANGELOG.md | 2 ++ tests/data_factory.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd7837a4..5e2c604d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Use substra-tools base docker image (not minimal) in tests ([#389](https://github.com/Substra/substra/pull/389)) + ### Fixed - Convert `round_idx` from metadata to `int` when creating `Performances` to fix Pydantic warning ([#387](https://github.com/Substra/substra/pull/387)) diff --git a/tests/data_factory.py b/tests/data_factory.py index f01a307e..eab6f296 100644 --- a/tests/data_factory.py +++ b/tests/data_factory.py @@ -17,7 +17,7 @@ DEFAULT_DATA_SAMPLE_FILENAME = "data.csv" DEFAULT_SUBSTRATOOLS_VERSION = ( - f"latest-nvidiacuda11.8.0-base-ubuntu22.04-python{sys.version_info.major}.{sys.version_info.minor}-minimal" + f"latest-nvidiacuda11.8.0-base-ubuntu22.04-python{sys.version_info.major}.{sys.version_info.minor}" ) DEFAULT_SUBSTRATOOLS_DOCKER_IMAGE = f"ghcr.io/substra/substra-tools:{DEFAULT_SUBSTRATOOLS_VERSION}"