@ -68,9 +68,6 @@ if os.name != 'nt' or sys.getwindowsversion() >= (10, 0, 14393):
TEST_EXIT_PASSED=0
TEST_EXIT_SKIPPED=77
# 20 minutes represented in seconds
TRAVIS_TIMEOUT_DURATION=20*60
BASE_SCRIPTS=[
# Scripts that are run by the travis build process.
# Longest test should go first, to favor running tests in parallel
@ -216,6 +213,7 @@ def main():
formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument('--combinedlogslen','-c',type=int,default=0,help='print a combined log (of length n lines) from all test nodes and test framework to the console on failure.')
parser.add_argument('--coverage',action='store_true',help='generate a basic coverage report for the RPC interface')
parser.add_argument('--ci',action='store_true',help='Run checks and code that are usually only enabled in a continuous integration environment')
parser.add_argument('--exclude','-x',help='specify a comma-separated-list of scripts to exclude.')
parser.add_argument('--extended',action='store_true',help='run the extended test suite in addition to the basic tests')
parser.add_argument('--force','-f',action='store_true',help='run tests even on platforms where they are disabled by default (e.g. windows).')