diff options
author | Jesús <heckyel@hyperbola.info> | 2020-03-03 20:26:23 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-03-03 20:26:23 -0500 |
commit | 135c541e5cc3f36e280ab0b211cf77b5458fe132 (patch) | |
tree | 5dfc7cf190799613810c61618b51e5e44ce32411 | |
parent | 6dbd6a67fb1deda60546a9c762f1683d40f10dd3 (diff) | |
download | hypervideo-gui-135c541e5cc3f36e280ab0b211cf77b5458fe132.tar.lz hypervideo-gui-135c541e5cc3f36e280ab0b211cf77b5458fe132.tar.xz hypervideo-gui-135c541e5cc3f36e280ab0b211cf77b5458fe132.zip |
[gitlab-ci] simplify
-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 . |