From 40c7a054601252991723998281e396c8f18c938b Mon Sep 17 00:00:00 2001 From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr> Date: Mon, 26 Oct 2020 14:28:26 +0100 Subject: [PATCH] .gitlab-ci.yml --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..81170ea --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +image: "python:3.8-slim" + +before_script: + - pip install coverage + - pip install matplotlib==3.1.2 + - pip install pandas==1.0.3 + - pip install pyBigWig==0.3.17 + - pip install seaborn==0.10.1 + - pip install tqdm==4.47.0 + - pip install lazyparser==0.2.0 + + +tests: + script: + - coverage run -m unittest discover -- GitLab