aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml17
1 files changed, 8 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c39fb0b..5f1e754 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,24 +16,23 @@ before_script:
stages:
- syntax
- - black
- - pep8
+ - code consistency
+ - flake8
syntax:
stage: syntax
script:
- # breaking errors ie syntax errors
+ # flake8 check only breaking errors ie syntax errors
- flake8 --select=E9,F63,F7,F82 --show-source
black:
- stage: black
+ stage: code consistency
script:
# code consistency
- - black . --check --line-length 120
+ - black . --check
pep8:
- stage: pep8
+ stage: flake8
script:
- # pep8 warnings and other non breaking warnings
- - flake8 --max-complexity=10 --max-line-length=120 --show-source
- allow_failure: true
+ # full flake8 test
+ - flake8 --show-source