andrej@1787: image: python:2.7 andrej@1787: andrej@1787: pipelines: andrej@1787: custom: # Pipelines that are triggered manually andrej@1787: checks: # The name that is displayed in the list in the Bitbucket Cloud GUI andrej@1787: - step: andrej@1787: caches: andrej@1787: - pip andrej@1787: script: # Modify the commands below to build your repository. andrej@1787: - pip install pycodestyle andrej@1787: - python --version andrej@1787: - ./tests/tools/check_source.sh andrej@1787: andrej@1787: andrej@1787: default: andrej@1787: - step: andrej@1787: caches: andrej@1787: - pip andrej@1787: script: # Modify the commands below to build your repository. andrej@1787: - pip install pycodestyle andrej@1787: - python --version andrej@1787: - ./tests/tools/check_source.sh