From 59a449c0737f9b674358f2f31c1e6080b541f98d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andri=20Fr=C3=A4nkl?= <andri.fraenkl@unibas.ch> Date: Wed, 14 Dec 2022 10:06:29 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1320def..cec4b98 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ Coverage-test-job: # Test Stage - pip install -r requirements.txt - pip install -r requirements_dev.txt - pip install -e . - - coverage run --source tests -m pytest + - coverage run --source tsg -m pytest - coverage report -m - echo "Coverage successfully deployed." @@ -31,7 +31,7 @@ Flake8/Pylint/mypy-test-job: # Test Stage - pip install -r requirements.txt - pip install -r requirements_dev.txt - pip install -e . - - flake8 --docstring-convention google tests/ tests/ - - pylint tests/ tests/ - - mypy tests/ tests/ + - flake8 --docstring-convention google tsg/ tests/ + - pylint tsg/ tests/ + - mypy tsg/ tests/ - echo "Linters successfully deployed." -- GitLab