We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b59c9f commit 85720a7Copy full SHA for 85720a7
molecule/testinfra/common/test_release_upgrades.py
@@ -56,6 +56,11 @@ def test_migration_check(host):
56
contents = json.loads(cmd.stdout)
57
print(contents)
58
# The script did not error out
59
+ if "error" in contents:
60
+ # Run the script manually to get the error message
61
+ cmd = host.run("securedrop-noble-migration-check")
62
+ print(cmd.stdout)
63
+ # We'll fail in the next line after this
64
assert "error" not in contents
65
# staging CI jobs don't have enough free space, so just check
66
# that it returned a value for it
0 commit comments