From 8da7b8dc2c54796ae729809e8193d832cefca083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9line?= <liuceline2001@yahoo.fr> Date: Thu, 2 Feb 2023 12:20:23 +0100 Subject: [PATCH] install module yml --- .gitlab-ci.yml | 2 ++ requirements.txt | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 requirements.txt diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4386ca5..2446731 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,12 +9,14 @@ stages: build: stage: build script: + - pip install -r requirements.txt - python machine_learning.py # Test stage test: stage: test script: + - pip install -r requirements.txt - pytest test_prediction.py # Export stage diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..898eb30 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +numpy +matplotlib +scikit-learn +pytest +joblib \ No newline at end of file -- GitLab