From 97a59bf2396a830f4dac84c5ba4dd701b0ad00f8 Mon Sep 17 00:00:00 2001 From: Iain Learmonth Date: Mon, 16 May 2022 17:37:02 +0100 Subject: [PATCH] ci: adds a nose test --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c02c0cc..c3c3145 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,6 +36,13 @@ test:mypy: - pip install -r requirements-types.txt --quiet - mypy app +test:nose: + script: + - apt update && apt install build-essential + - pip install -r requirements.txt --quiet + - pip install nose + - nosetests test/*/*.py + test:pylint: script: - cp config.yaml.example config.yaml