Skip to content
Snippets Groups Projects
.gitlab-ci.yml 360 B
Newer Older
  • Learn to ignore specific revisions
  • 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
    
    Jarrod Pas's avatar
    Jarrod Pas committed
        - pylint pydtnsim 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
    
    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