File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,29 @@ You can run any combination (incl. duplicates) of tests by calling:
49
49
test/functional/test_runner.py <testname1> <testname2> <testname3> ...
50
50
```
51
51
52
+ Wildcard test names can be passed, if the paths are coherent and the test runner
53
+ is called from a ` bash ` shell or similar that does the globbing. For example,
54
+ to run all the wallet tests:
55
+
56
+ ```
57
+ test/functional/test_runner.py test/functional/wallet*
58
+ functional/test_runner.py functional/wallet* (called from the test/ directory)
59
+ test_runner.py wallet* (called from the test/functional/ directory)
60
+ ```
61
+
62
+ but not
63
+
64
+ ```
65
+ test/functional/test_runner.py wallet*
66
+ ```
67
+
68
+ Combinations of wildcards can be passed:
69
+
70
+ ```
71
+ test/functional/test_runner.py ./test/functional/tool* test/functional/mempool*
72
+ test_runner.py tool* mempool*
73
+ ```
74
+
52
75
Run the regression test suite with:
53
76
54
77
```
You can’t perform that action at this time.
0 commit comments