borgmatic/.drone.yml
Luke Murphy 82ec45e375
Pin tox version
Towards more reproducible results with Tox.
2019-05-13 23:12:18 +02:00

19 lines
311 B
YAML

pipeline:
build:
image: python:${PYTHON_VERSION}-alpine${ALPINE_VERSION}
pull: true
commands:
- pip install tox==3.10.0
- tox
- apk add --no-cache borgbackup
- tox -e end-to-end
matrix:
ALPINE_VERSION:
- 3.7
- 3.9
PYTHON_VERSION:
- 3.5
- 3.6
- 3.7