Created
January 13, 2021 09:47
-
-
Save seahrh/989fc0860975e4ac774e65fe50da86fd to your computer and use it in GitHub Desktop.
Python starter bitbucket pipelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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