Skip to content

Instantly share code, notes, and snippets.

@seahrh
Created January 13, 2021 09:47
Show Gist options
  • Save seahrh/989fc0860975e4ac774e65fe50da86fd to your computer and use it in GitHub Desktop.
Save seahrh/989fc0860975e4ac774e65fe50da86fd to your computer and use it in GitHub Desktop.
Python starter bitbucket pipelines
definitions:
steps:
- step: &tests
image: python:3.7.9
script:
- pip install ."[tests]"
- mypy src
- pytest -vv --cov=src
caches:
- pip
pipelines:
default:
- step:
<<: *tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment