From 2aaaca9e6ecc82e9a18e26ab378971325f9b8ad0 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 06:55:36 -0500 Subject: [PATCH] Yanked before_script in pylint region --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0b920b..4fc0777 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,9 +22,8 @@ stages: # List of stages for jobs, and their order of execution pylint: stage: Test - before_script: - - python3.9 -m pip install pylint pylint-exit anybadge script: + - python3.9 -m pip install pylint pylint-exit anybadge - mkdir ./pylint - python3.9 -m pylint --output-format=text asyncdb | tee ./pylint/pylint.log || pylint-exit "${?}" - PYLINT_SCORE=$(sed -n 's/^Your code has been rated at \([-0-9.]*\)\/.*/\1/p' ./pylint/pylint.log)