Skip to content

Commit

Permalink
Fix expected docker container size
Browse files Browse the repository at this point in the history
Change-Id: I3258527af3311dccf61eb46016101f5f0a5f9e8e
  • Loading branch information
LarsMichelsen committed Jul 27, 2019
1 parent cb84d58 commit dfacc77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/docker/test_docker.py
Expand Up @@ -124,7 +124,8 @@ def _build(request, client, version, add_args=None):
# 2018-11-22: 920 -> 940
# 2019-04-10: 940 -> 950
# 2019-07-12: 950 -> 1040 (python3)
assert attrs["Size"] < 1050 * 1024 * 1024, \
# 2019-07-27: 1040 -> 1054 (numpy)
assert attrs["Size"] < 1110955410.0, \
"Docker image size increased: Please verify that this is intended"

assert len(attrs["RootFS"]["Layers"]) == 6
Expand Down

0 comments on commit dfacc77

Please sign in to comment.