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

Jarrod Pas's avatar
Jarrod Pas committed
pylint:
  stage: test
  script:
    - pip install pylint
    - pylint pydtn examples
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
    - pycodestyle pydtn 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 pydtn examples