Skip to content
Snippets Groups Projects
.gitlab-ci.yml 453 B
Newer Older
Nico's avatar
Nico committed
image: debian:stretch
Nico's avatar
Nico committed

Nico's avatar
Nico committed
before_script:
    - apt update && apt install --no-install-recommends -y gir1.2-gtk-3.0 python3-gi python3-pip python3-setuptools
    - pip3 install -r requirements-dev.txt
Nico's avatar
Nico committed

Nico's avatar
Nico committed
stages:
  - test

pycodestyle:
    stage: test
    script: tools/tests/test-pycodestyle.sh

pylint:
    stage: test
    script: tools/tests/test-pylint.sh

pytest:
    stage: test
Nico's avatar
Nico committed
    coverage: '/TOTAL.*\s+(\d+%)$/'
Nico's avatar
Nico committed
    script: tools/tests/test-pytest.sh