diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0143e233bfef3d75d81f21f29074cd575cf82345..5858a283f9e91de15d22143a4924242873200378 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -75,13 +75,13 @@ install: #### #### ####################################################################################################################################### -format: - stage: test - before_script: - - source ./venv/bin/activate - - pip install autopep8 - script: - - autopep8 --in-place --recursive ./backend +# format: +# stage: test +# before_script: +# - source ./venv/bin/activate +# - pip install autopep8 +# script: +# - autopep8 --in-place --recursive ./backend lint: @@ -89,9 +89,9 @@ lint: allow_failure: false before_script: - source ./venv/bin/activate - - pip install pylint + - pip install pycodestyle script: - - pylint --recursive=y ./backend + - pycodestyle --show-source --show-pep8 ./backend test: