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