Skip to content
Snippets Groups Projects
.gitlab-ci.yml 419 B
Newer Older
Jarrod Pas's avatar
Jarrod Pas committed
image: python:alpine

before_script:
  - pip install --editable .

Jarrod Pas's avatar
Jarrod Pas committed
pylint:
  stage: test
  script:
    - pip install pylint
    - pip install pylint-exit
    - pylint pydtnsim examples || pylint-exit $LASTEXITCODE
Jarrod Pas's avatar
Jarrod Pas committed

Jarrod Pas's avatar
Jarrod Pas committed
pycodestyle:
Jarrod Pas's avatar
Jarrod Pas committed
  stage: test
  script:
    - pip install pycodestyle
Jarrod Pas's avatar
Jarrod Pas committed
    - pycodestyle pydtnsim examples
Jarrod Pas's avatar
Jarrod Pas committed

Jarrod Pas's avatar
Jarrod Pas committed
pydocstyle:
  stage: test
  script:
Jarrod Pas's avatar
Jarrod Pas committed
    - pip install pydocstyle
Jarrod Pas's avatar
Jarrod Pas committed
    - pydocstyle pydtnsim examples