Skip to content
Snippets Groups Projects
Commit c15fdad1 authored by j j's avatar j j Committed by Johann Jacobsohn
Browse files

Update .gitlab-ci.yml

parent 28b53b8d
No related branches found
No related tags found
No related merge requests found
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: python:latest
before_script:
- apt-get update -q -y
- python --version
- pip install -e ".[dev]"
stages:
- Static Analysis
- Test
- Coverage
- Packaging
flake8:
stage: Static Analysis
script:
- make flake8
pylint:
stage: Static Analysis
script:
- make pylint
pycodestyle:
stage: Static Analysis
script:
- make pycodestyle
pydocstyle:
stage: Static Analysis
script:
- make pydocstyle
test:
stage: Test
script:
- make pytest
coverage:
stage: Coverage
coverage: '/TOTAL.+?(\d+)%/'
script:
- make coverage
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment