print messages for skipped tests
This commit is contained in:
parent
ebc8630d5a
commit
04f63da2cc
|
@ -66,5 +66,6 @@ suite "Official - Operations - Deposits " & preset():
|
||||||
|
|
||||||
for kind, path in walkDir(OperationsDepositsDir, true):
|
for kind, path in walkDir(OperationsDepositsDir, true):
|
||||||
if path in expected_failures:
|
if path in expected_failures:
|
||||||
|
echo "Skipping test: ", path
|
||||||
continue
|
continue
|
||||||
runTest(path)
|
runTest(path)
|
||||||
|
|
|
@ -69,5 +69,6 @@ suite "Official - Sanity - Blocks " & preset():
|
||||||
|
|
||||||
for kind, path in walkDir(SanityBlocksDir, true):
|
for kind, path in walkDir(SanityBlocksDir, true):
|
||||||
if path in expected_failures:
|
if path in expected_failures:
|
||||||
|
echo "Skipping test: ", path
|
||||||
continue
|
continue
|
||||||
runTest(path)
|
runTest(path)
|
||||||
|
|
Loading…
Reference in New Issue