Skip to content
Snippets Groups Projects

WIP: Update gitlab ci

Closed Bo-Chun Chen requested to merge louistw/account-app:update-gitlab-ci into master
1 file
+ 7
4
Compare changes
  • Side-by-side
  • Inline
+ 7
4
image: "python:3.7"
image: "python:3.6"
before_script:
- env
- python --version
- pip install pylint
stages:
- lint
- linting
linting:
stage: linting
tags:
- lint
stage: lint
script:
- pylint --ignore=tests.py --max-line-length=120 *.py app
- pylint --ignore=tests.py --max-line-length=79 *.py app
only:
- merge_requests
Loading