Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-25 | test: Remove raw-tx byte juggling in mempool_reorg | MarcoFalke | |
2020-04-23 | test: Fix intermittent error in mempool_reorg | MarcoFalke | |
2020-04-19 | test: Increase debugging to hunt down mempool_reorg intermittent failure | MarcoFalke | |
2020-04-16 | scripted-diff: Bump copyright headers | MarcoFalke | |
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- | |||
2020-03-14 | test: Bump timeouts to avoid valgrind failures | MarcoFalke | |
2020-01-25 | bump test timeouts so that functional tests run in valgrind | Micky Yun Chan | |
2018-09-10 | qa: Run all tests even if wallet is not compiled | MarcoFalke | |
2018-08-13 | Merge #13054: tests: Enable automatic detection of undefined names in Python ↵ | MarcoFalke | |
tests scripts. Remove wildcard imports. 68400d8b96 tests: Use explicit imports (practicalswift) Pull request description: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports. Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools. An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports. Before this commit: ``` $ contrib/devtools/lint-python.sh | head -10 ./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names ./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names ./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names ./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util ./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util ./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util ./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util ./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util ./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util ./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util $ ``` After this commit: ``` $ contrib/devtools/lint-python.sh | head -10 $ ``` Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9 | |||
2018-08-13 | tests: Use explicit imports | practicalswift | |
2018-08-13 | Merge #13928: qa: blocktools enforce named args for amount | MarcoFalke | |
cf9ed307e6 qa: blocktools enforce named args for amount (MarcoFalke) Pull request description: Since #13669 changed some signatures, I think it might be worthwhile to enforce named args for primitive types such as amounts. Tree-SHA512: 2733e7b6a20590b54bd54e81a09e3f5e2fadf4390bed594916b70729bcf485b048266012c1203369e0968032a2c6a2719107ac17ee925d8939af3df916eab1a6 | |||
2018-08-11 | Merge #13913: qa: Remove redundant checkmempool/checkblockindex extra_args | MarcoFalke | |
fa31ca0c22 qa: Remove redundant checkmempool/checkblockindex extra_args (MarcoFalke) Pull request description: They are already enabled by default for regtest: https://github.com/bitcoin/bitcoin/blob/df9f71274645a917e2578c52a1c59745bce8112d/src/init.cpp#L1002-L1007 Closes #13912. CC #12138 Tree-SHA512: b11a3e8cc4715569f917ab89132f8c8dcae64aebcd7a34182675f86cf7f6e207e3187b7ea01a56c92c8c3af76122b6b995e84f533e134676863f8953dc1f0574 | |||
2018-08-09 | qa: blocktools enforce named args for amount | MarcoFalke | |
2018-08-09 | [Tests] Rename create_tx and move to blocktools.py | Conor Scott | |
2018-08-08 | qa: Remove redundant checkmempool/checkblockindex extra_args | MarcoFalke | |
2018-07-27 | Update copyright headers to 2018 | DrahtBot | |
2018-02-17 | scripted-diff: change signrawtransaction to signrawtransactionwithwallet in ↵ | Andrew Chow | |
tests -BEGIN VERIFY SCRIPT- sed -i 's/\<signrawtransaction\>/signrawtransactionwithwallet/g' test/functional/*.py sed -i 's/\<signrawtransaction\>/signrawtransactionwithwallet/g' test/functional/test_framework/*.py -END VERIFY SCRIPT- | |||
2018-01-03 | Increment MIT Licence copyright header year on files modified in 2017 | Akira Takizawa | |
2017-10-05 | scripted-diff: rename assert_raises_jsonrpc to assert_raises_rpc error | John Newbery | |
-BEGIN VERIFY SCRIPT- sed -i 's/assert_raises_jsonrpc/assert_raises_rpc_error/g' test/functional/*py test/functional/test_framework/*py -END VERIFY SCRIPT- | |||
2017-09-01 | [tests] don't override __init__() in individual tests | John Newbery | |
Almost all test scripts currently need to override the __init__() method. When they do that they need to call into super().__init__() as the base class does some generic initialization. This commit makes the base class __init__() call into set_test_params() method. Individual test cases can override set_test_params() to setup their test parameters. | |||
2017-05-02 | [tests] Remove is_network_split from funtional test cases | John Newbery | |
2017-03-20 | Rename rpc-tests directory to functional | John Newbery | |