image: python:alpine stage: test
script: - pip install pylint
- pylint pydtn examples
pycodestyle: stage: test
script: - pip install pycodestyle
- pycodestyle pydtn examples
pydocstyle: stage: test script:
- pip install pydocstyle
- pydocstyle pydtn examples