Pin tox version #171

Merged
witten merged 1 commits from :cifix/pin-tox into master 2019-05-14 00:06:07 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ pipeline:
image: python:${PYTHON_VERSION}-alpine${ALPINE_VERSION}
pull: true
commands:
- pip install tox
- pip install tox==3.10.0
- tox
- apk add --no-cache borgbackup
- tox -e end-to-end

View File

@ -1,6 +1,7 @@
[tox]
envlist = py3
skipsdist = True
minversion = 3.10.0
Review

So it looks like this will break devs running tox on their machines if they have an old version. I guess that since this only applies to devs and not general borgmatic usage, that's probably okay. Especially since tox should be easy to upgrade on a dev machine.

So it looks like this will break devs running tox on their machines if they have an old version. I guess that since this only applies to devs and not general borgmatic usage, that's probably okay. Especially since tox should be easy to upgrade on a dev machine.
[testenv]
usedevelop = True