diff options
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d12d119..7a1cbac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,18 +2,12 @@ image: debian:sid before_script: - apt-get update -y -- apt-get install -y locales python3-pip virtualenv -- sed -i 's/# \(es_ES.UTF-8 UTF-8\)/\1/' /etc/locale.gen -- sed -i 's/# \(en_US.UTF-8 UTF-8\)/\1/' /etc/locale.gen -- sed -i 's/# \(eo.UTF-8 UTF-8\)/\1/' /etc/locale.gen -- sed -i 's/# \(fr_FR.UTF-8 UTF-8\)/\1/' /etc/locale.gen -- dpkg-reconfigure --frontend=noninteractive locales -- export LANG=es_ES.UTF-8 LANGUAGE=es_ES +- apt-get install -y python3-pip virtualenv test_flake8: script: - virtualenv -p python3 venv - source venv/bin/activate - python --version - - pip install flake8-per-file-ignores nose + - pip install -U -r requirements_devs.txt - flake8 . |