From 4e5179c46d0da8f446f81955eaa508bc81c19a4b Mon Sep 17 00:00:00 2001 From: El Yaagoubi Bilel <bilel.el-yaagoubi@student-cs.fr> Date: Wed, 12 Oct 2022 23:37:30 +0200 Subject: [PATCH] fix ci --- .gitlab-ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index faa48b7..e6f814c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,4 +31,13 @@ pylint: # À toi de nous rajouter un petit job pour faire des tests unitaires pytest: - ## Bon courage + stage: test + dependencies: + - download_dependencies + needs: + - download_dependencies + before_script: + - source .venv/bin/activate + - pip install pytest + script: + - pytest calculator -- GitLab