From 87afd04f6b1b3b23287a86e4b93e5d8967cf398e Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Thu, 14 May 2020 14:19:19 -0500 Subject: [PATCH] Merge into one job to save some time --- .gitlab-ci.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b1e2dd..4b1cc07 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,17 +8,10 @@ before_script: stages: - lint -flake8: +linting: tags: - lint stage: lint script: - flake8 --exclude=tests.py --max-line-length=120 *.py app - -pylint: - tags: - - lint - stage: lint - script: - pylint --ignore=tests.py --max-line-length=120 *.py app - -- GitLab