diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2022-07-21 11:35:35 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2022-07-21 12:00:05 +0000 |
commit | ac6db928c23310c7472fea540e6d54478c7981c8 (patch) | |
tree | 82b09a3718a798c097ed6fddb9d3d98d75c40136 /tests/functional_tests/functional_tests_rpc.py | |
parent | Merge pull request #8435 (diff) | |
download | monero-ac6db928c23310c7472fea540e6d54478c7981c8.tar.xz |
functional_tests: silence the cpu power test program
it's very spammy and drowns the test output
Diffstat (limited to 'tests/functional_tests/functional_tests_rpc.py')
-rwxr-xr-x | tests/functional_tests/functional_tests_rpc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/functional_tests/functional_tests_rpc.py b/tests/functional_tests/functional_tests_rpc.py index 450552cf8..322e74e95 100755 --- a/tests/functional_tests/functional_tests_rpc.py +++ b/tests/functional_tests/functional_tests_rpc.py @@ -97,6 +97,8 @@ try: os.environ['MAKE_TEST_SIGNATURE'] = FUNCTIONAL_TESTS_DIRECTORY + '/make_test_signature' os.environ['SEEDHASH_EPOCH_BLOCKS'] = "8" os.environ['SEEDHASH_EPOCH_LAG'] = "4" + if not 'MINING_SILENT' in os.environ: + os.environ['MINING_SILENT'] = "1" for i in range(len(command_lines)): #print('Running: ' + str(command_lines[i])) |