From 0db52b3e8393f22ce62728729bd78aa379fc8282 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 2 Sep 2022 11:43:49 +0200 Subject: [PATCH] Add fedora tests --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ccbcb9..87b164e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,4 +30,17 @@ ubuntu: - pip install . script: - ./tests/run.py + +fedora: + image: "fedora:latest" + before_script: + - yum -y update && yum -y install python3 pip + - pip install numpy + - pip install build + - pip install virtualenv + - virtualenv myenv + - source myenv/bin/activate + - pip install . + script: + - ./tests/run.py