mirror of https://github.com/docker/docker-py.git
Add xfail to ignore 18.09 beta bug
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
b36124d91e
commit
a3111d9e00
|
@ -540,6 +540,11 @@ class BuildTest(BaseAPIIntegrationTest):
|
||||||
) == sorted(lsdata)
|
) == sorted(lsdata)
|
||||||
|
|
||||||
@requires_api_version('1.31')
|
@requires_api_version('1.31')
|
||||||
|
@pytest.mark.xfail(
|
||||||
|
True,
|
||||||
|
reason='Currently fails on 18.09: '
|
||||||
|
'https://github.com/moby/moby/issues/37920'
|
||||||
|
)
|
||||||
def test_prune_builds(self):
|
def test_prune_builds(self):
|
||||||
prune_result = self.client.prune_builds()
|
prune_result = self.client.prune_builds()
|
||||||
assert 'SpaceReclaimed' in prune_result
|
assert 'SpaceReclaimed' in prune_result
|
||||||
|
|
Loading…
Reference in New Issue