Skip to content
Snippets Groups Projects
Commit 6b78b687 authored by Robotka István Adrián's avatar Robotka István Adrián
Browse files

Update .gitlab-ci.yml

parent 94dd494c
Branches
No related tags found
No related merge requests found
Pipeline #5112 failed
image: python:3.8.5-buster image: python:3.8.5-buster
stages: stages:
- Get dependencies - get-dependencies
- Static Analysis - static-analysis
- Docker build - docker-build
variables: variables:
# git tag or branch name # git tag or branch name
...@@ -15,18 +15,18 @@ include: ...@@ -15,18 +15,18 @@ include:
file: /docker-build.yaml file: /docker-build.yaml
pip: pip:
stage: Get dependencies stage: get-dependencies
script: script:
- pip install -r requirements.txt - pip install -r requirements.txt
flake8: flake8:
stage: Static Analysis stage: static-analysis
script: script:
- pip install flake8 - pip install flake8
- flake8 --max-line-length=120 *.py - flake8 --max-line-length=120 *.py
pylint: pylint:
stage: Static Analysis stage: static-analysis
allow_failure: true allow_failure: true
script: script:
- pip install pylint - pip install pylint
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment