From 62ca1faa1640668a6d48b4101859ef805f1d0881 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Tue, 8 Aug 2023 13:39:39 +0000 Subject: [PATCH] [GitLabCI] Install numpy for python unittests. --- .gitlab/ci/test.gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab/ci/test.gitlab-ci.yml b/.gitlab/ci/test.gitlab-ci.yml index 7c11584f..2ad635df 100644 --- a/.gitlab/ci/test.gitlab-ci.yml +++ b/.gitlab/ci/test.gitlab-ci.yml @@ -17,6 +17,7 @@ test:ubuntu_python: script: - source venv/bin/activate - cd aidge_backend_cpu + - python3 -m pip install numpy - python3 -m pip list # Run on discovery all tests located in core/unit_tests/python and discard the stdout # only to show the errors/warnings and the results of the tests -- GitLab