mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Merge branch 'ci-lint' into 'master'
Add gitlab-ci support and pylint See merge request federez/re2o!30
This commit is contained in:
commit
8750117855
1 changed files with 21 additions and 0 deletions
21
.gitlab-ci.yml
Normal file
21
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
image: debian:stretch
|
||||||
|
stages:
|
||||||
|
- lint
|
||||||
|
|
||||||
|
lint:
|
||||||
|
stage: lint
|
||||||
|
variables:
|
||||||
|
LANG: 'en_US.UTF-8'
|
||||||
|
LC_ALL: 'en_US.UTF-8'
|
||||||
|
LANGUAGE: 'en_US.UTF-8'
|
||||||
|
script:
|
||||||
|
- apt-get -qq update
|
||||||
|
- DEBIAN_FRONTEND=noninteractive apt-get -qq install -y locales python3-pip python3-django
|
||||||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||||||
|
- pip3 install -q pylint-django
|
||||||
|
- pylint --load-plugins pylint_django cotisations machines re2o logs topologie preferences search users || if [ $? -ne 1 ]; then exit 0; else exit 1; fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue