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

 stage: test
Jarrod Pas's avatar
Jarrod Pas committed
 script:
   - pip install pylint
Jarrod Pas's avatar
Jarrod Pas committed
   - pylint pydtn examples
Jarrod Pas's avatar
Jarrod Pas committed

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