mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-02-21 10:27:49 +08:00
Fix script to only display warning on invalid.
Some checks are pending
Test Workspace / Test Workspace (push) Waiting to run
Some checks are pending
Test Workspace / Test Workspace (push) Waiting to run
This commit is contained in:
parent
e9ac9c2fb4
commit
c4f12d7350
@ -131,8 +131,9 @@ f"""Library not found at {so_path}:
|
||||
print(f"\r{out}", end="")
|
||||
|
||||
if (num_finished + num_invalid) == args.nonces:
|
||||
print()
|
||||
print("Warning: Invalid solutions encountered. This will cause actual benchmarks to fail.")
|
||||
if num_invalid > 0:
|
||||
print()
|
||||
print("Warning: Invalid solutions encountered. This will cause actual benchmarks to fail.")
|
||||
break
|
||||
if num_invalid > 0 and not args.ignore_invalid:
|
||||
print()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user