From b59f8e01a6e74d324e1c0e22fe6a941da9789617 Mon Sep 17 00:00:00 2001
From: Carl Schaffer <schaffer@leibniz-kis.de>
Date: Thu, 14 Jan 2021 09:14:20 +0100
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..f1fb7bd
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,13 @@
+#Specify python version here e.g. python:3.6
+image: 'python:latest'
+
+# Run unittests
+test:
+    stage: test
+    tags:
+    - docker
+
+    script:
+      - pip install pytest-cov
+      - pip install .
+      - pytest --cov
-- 
GitLab