From b9223f189dc4b790b4150a9f482e9c36aafb0c1b Mon Sep 17 00:00:00 2001
From: Andreas Valder <andreasv@fsmpi.rwth-aachen.de>
Date: Thu, 7 Dec 2017 07:33:57 +0100
Subject: [PATCH] added sinf tests

---
 .gitlab-ci.yml | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index aa849db..2faa187 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,9 +9,19 @@ unittest:
     - python3 -m coverage run tests.py
     - python3 -m coverage report --include "./*"
     - python3 -m coverage report -m  --include "./*" > report.txt
-    - python3 -m coverage  --include "./*" html
+    - python3 -m coverage html --include "./*"
     artifacts:
         paths:
         - htmlcov/*
         - .coverage
-        - report.txt
\ No newline at end of file
+        - report.txt
+
+livetest:
+    image: debian:stretch
+    stage: test
+    script:
+    - apt update
+    - apt install -y python3 python3-requests
+    - python3 -V
+    - uname -a
+    - ./tests/urlcheck_sinf.py
\ No newline at end of file
-- 
GitLab