mirror of https://github.com/docker/docker-py.git
Merge pull request #3166 from thaJeztah/fix_flake8_failures
tests/integration: fix flake8 failures (E721 do not compare types), and fix Dockerfile for debian "bookworm"
This commit is contained in:
commit
54ec0c6bf7
|
@ -5,8 +5,8 @@ ARG PYTHON_VERSION=3.10
|
||||||
FROM python:${PYTHON_VERSION}
|
FROM python:${PYTHON_VERSION}
|
||||||
|
|
||||||
ARG APT_MIRROR
|
ARG APT_MIRROR
|
||||||
RUN sed -ri "s/(httpredir|deb).debian.org/${APT_MIRROR:-deb.debian.org}/g" /etc/apt/sources.list \
|
RUN sed -ri "s/(httpredir|deb).debian.org/${APT_MIRROR:-deb.debian.org}/g" /etc/apt/sources.list.d/debian.sources \
|
||||||
&& sed -ri "s/(security).debian.org/${APT_MIRROR:-security.debian.org}/g" /etc/apt/sources.list
|
&& sed -ri "s/(security).debian.org/${APT_MIRROR:-security.debian.org}/g" /etc/apt/sources.list.d/debian.sources
|
||||||
|
|
||||||
RUN apt-get update && apt-get -y install --no-install-recommends \
|
RUN apt-get update && apt-get -y install --no-install-recommends \
|
||||||
gnupg2 \
|
gnupg2 \
|
||||||
|
|
|
@ -1392,7 +1392,7 @@ class GetContainerStatsTest(BaseAPIIntegrationTest):
|
||||||
response = self.client.stats(container, stream=0)
|
response = self.client.stats(container, stream=0)
|
||||||
self.client.kill(container)
|
self.client.kill(container)
|
||||||
|
|
||||||
assert type(response) == dict
|
assert isinstance(response, dict)
|
||||||
for key in ['read', 'networks', 'precpu_stats', 'cpu_stats',
|
for key in ['read', 'networks', 'precpu_stats', 'cpu_stats',
|
||||||
'memory_stats', 'blkio_stats']:
|
'memory_stats', 'blkio_stats']:
|
||||||
assert key in response
|
assert key in response
|
||||||
|
@ -1405,7 +1405,7 @@ class GetContainerStatsTest(BaseAPIIntegrationTest):
|
||||||
self.client.start(container)
|
self.client.start(container)
|
||||||
stream = self.client.stats(container)
|
stream = self.client.stats(container)
|
||||||
for chunk in stream:
|
for chunk in stream:
|
||||||
assert type(chunk) == dict
|
assert isinstance(chunk, dict)
|
||||||
for key in ['read', 'network', 'precpu_stats', 'cpu_stats',
|
for key in ['read', 'network', 'precpu_stats', 'cpu_stats',
|
||||||
'memory_stats', 'blkio_stats']:
|
'memory_stats', 'blkio_stats']:
|
||||||
assert key in chunk
|
assert key in chunk
|
||||||
|
|
|
@ -32,7 +32,7 @@ class ListImagesTest(BaseAPIIntegrationTest):
|
||||||
|
|
||||||
def test_images_quiet(self):
|
def test_images_quiet(self):
|
||||||
res1 = self.client.images(quiet=True)
|
res1 = self.client.images(quiet=True)
|
||||||
assert type(res1[0]) == str
|
assert isinstance(res1[0], str)
|
||||||
|
|
||||||
|
|
||||||
class PullImageTest(BaseAPIIntegrationTest):
|
class PullImageTest(BaseAPIIntegrationTest):
|
||||||
|
@ -43,7 +43,7 @@ class PullImageTest(BaseAPIIntegrationTest):
|
||||||
pass
|
pass
|
||||||
res = self.client.pull('hello-world')
|
res = self.client.pull('hello-world')
|
||||||
self.tmp_imgs.append('hello-world')
|
self.tmp_imgs.append('hello-world')
|
||||||
assert type(res) == str
|
assert isinstance(res, str)
|
||||||
assert len(self.client.images('hello-world')) >= 1
|
assert len(self.client.images('hello-world')) >= 1
|
||||||
img_info = self.client.inspect_image('hello-world')
|
img_info = self.client.inspect_image('hello-world')
|
||||||
assert 'Id' in img_info
|
assert 'Id' in img_info
|
||||||
|
|
Loading…
Reference in New Issue