From 7eb0ada73811ef35b06296c00e0be75251119871 Mon Sep 17 00:00:00 2001 From: Javinator9889 Date: Fri, 20 Sep 2019 16:27:21 +0200 Subject: [PATCH] Updated GitLabCI Signed-off-by: Javinator9889 --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b28c44e..cec50ee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,14 +18,14 @@ cache: before_script: - python -V # Print out python version for debugging - - pip install pylint + - pip install pylint_runner - cd YouTubeMDBot - pip install -r requirements.txt test:pylint: script: - - pylint --ignored-classes=_socketobject *.py + - pylint_runner -j 0 --exit-zero --ignored-classes=_socketobject *.py test: script: - - python -m unittest $(pwd)/YouTubeMDBot/tests/*.py + - python -m unittest $(pwd)/tests/*.py