Skip to content

Commit

Permalink
debugging failed builds
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispyles committed Dec 31, 2024
1 parent 7f695e8 commit 8931a50
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/test_grade/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down Expand Up @@ -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


Expand Down

0 comments on commit 8931a50

Please sign in to comment.