File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 3
3
# Copyright 2016 The Bitcoin Core developers
4
4
# Distributed under the MIT software license, see the accompanying
5
5
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
6
+ """Test framework for bitcoin utils.
7
+
8
+ Runs automatically during `make check`.
9
+
10
+ Can also be run manually."""
11
+
6
12
import os
7
13
import sys
8
14
import argparse
9
15
import logging
10
16
11
- help_text = """Test framework for bitcoin utils.
12
-
13
- Runs automatically during `make check`.
14
-
15
- Can also be run manually."""
16
-
17
17
if __name__ == '__main__' :
18
18
sys .path .append (os .path .dirname (os .path .abspath (__file__ )))
19
19
import buildenv
20
20
import bctest
21
21
22
- parser = argparse .ArgumentParser (description = help_text )
22
+ parser = argparse .ArgumentParser (description = __doc__ )
23
23
parser .add_argument ('-v' , '--verbose' , action = 'store_true' )
24
24
args = parser .parse_args ()
25
25
verbose = args .verbose
You can’t perform that action at this time.
0 commit comments