From 58f0e10e0f330d6ab32adf9af555db097994214c Mon Sep 17 00:00:00 2001
From: Valentin Emiya <23557104+valentin-emiya@users.noreply.github.com>
Date: Thu, 11 Jul 2024 15:54:33 +0200
Subject: [PATCH] update ci.yml

---
 .gitlab-ci.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e6189ed..7a57693 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,12 +29,17 @@ default:
     - apt-get install -y --no-install-recommends texlive-latex-extra
     - apt-get install -y --no-install-recommends dvipng
     - apt-get clean
+    - pip install virtualenv
+    - virtualenv venv
+    - source venv/bin/activate
+    - pip install matplotlib numpy scipy six nose coverage
 
 install_and_test_39:
   image: python:3.9
   script:
     - dpkg -L python3-pytest | xargs file | grep executable
     - pip3 install -e . --no-deps
+    - py.test-3
     - python3 -m pytest
   artifacts:
     when: always
-- 
GitLab