diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa849db407f920809c4e150597a4136b22ccfd38..2faa187802a0e7bcb4a510941d98bd717e45c010 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