From 8931a50afe9a6fe2f158933b0b79a25aba04e9cd Mon Sep 17 00:00:00 2001 From: Chris Pyles Date: Tue, 31 Dec 2024 12:16:51 -0800 Subject: [PATCH] debugging failed builds --- test/test_grade/test_integration.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/test/test_grade/test_integration.py b/test/test_grade/test_integration.py index e18caff5..d67e222c 100644 --- a/test/test_grade/test_integration.py +++ b/test/test_grade/test_integration.py @@ -100,6 +100,13 @@ def test_timeout_some_notebooks_finish(): res = subprocess.run(["docker", "images"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) print(res.stdout.decode()) print(res.stderr.decode()) + res = subprocess.run( + ["docker", "image", "history", "--no-trunc", "otter-grade:otter-grade-test"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + print(res.stdout.decode()) + print(res.stderr.decode()) assert False @@ -127,6 +134,13 @@ def test_timeout_no_notebooks_finish(): res = subprocess.run(["docker", "images"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) print(res.stdout.decode()) print(res.stderr.decode()) + res = subprocess.run( + ["docker", "image", "history", "--no-trunc", "otter-grade:otter-grade-test"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + print(res.stdout.decode()) + print(res.stderr.decode()) assert False