mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-22 12:10:40 +00:00
Merge pull request #45 from samiam/fix_empty_volumes
Correctly handle empty dangling volumes
This commit is contained in:
commit
49e1bdfe3d
@ -1,5 +1,6 @@
|
|||||||
|
repos:
|
||||||
- repo: git://github.com/pre-commit/pre-commit-hooks
|
- repo: git://github.com/pre-commit/pre-commit-hooks
|
||||||
sha: 'v0.4.2'
|
rev: v1.2.3
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
- id: check-docstring-first
|
- id: check-docstring-first
|
||||||
|
12
.travis.yml
12
.travis.yml
@ -1,8 +1,12 @@
|
|||||||
language: python
|
language: python
|
||||||
env:
|
matrix:
|
||||||
- TOXENV=py27
|
include:
|
||||||
- TOXENV=py33
|
- python: 2.7
|
||||||
- TOXENV=py34
|
env: TOXENV=py27
|
||||||
|
- python: 3.5
|
||||||
|
env: TOXENV=py35
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py36
|
||||||
install:
|
install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
script:
|
script:
|
||||||
|
@ -76,7 +76,7 @@ def get_all_images(client):
|
|||||||
|
|
||||||
def get_dangling_volumes(client):
|
def get_dangling_volumes(client):
|
||||||
log.info("Getting dangling volumes")
|
log.info("Getting dangling volumes")
|
||||||
volumes = client.volumes({'dangling': True})['Volumes']
|
volumes = client.volumes({'dangling': True})['Volumes'] or []
|
||||||
log.info("Found %s dangling volumes", len(volumes))
|
log.info("Found %s dangling volumes", len(volumes))
|
||||||
return volumes
|
return volumes
|
||||||
|
|
||||||
|
3
tox.ini
3
tox.ini
@ -1,5 +1,5 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py27,py33,py34
|
envlist = py27,py35,py36
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
@ -9,5 +9,6 @@ deps =
|
|||||||
pytest
|
pytest
|
||||||
commands =
|
commands =
|
||||||
py.test {posargs:tests}
|
py.test {posargs:tests}
|
||||||
|
pre-commit autoupdate
|
||||||
pre-commit install -f --install-hooks
|
pre-commit install -f --install-hooks
|
||||||
pre-commit run --all-files
|
pre-commit run --all-files
|
||||||
|
Loading…
Reference in New Issue
Block a user