You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/functional/test_runner.py
+24-16Lines changed: 24 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -68,9 +68,6 @@
68
68
TEST_EXIT_PASSED=0
69
69
TEST_EXIT_SKIPPED=77
70
70
71
-
# 20 minutes represented in seconds
72
-
TRAVIS_TIMEOUT_DURATION=20*60
73
-
74
71
BASE_SCRIPTS= [
75
72
# Scripts that are run by the travis build process.
76
73
# Longest test should go first, to favor running tests in parallel
@@ -216,6 +213,7 @@ def main():
216
213
formatter_class=argparse.RawTextHelpFormatter)
217
214
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.')
218
215
parser.add_argument('--coverage', action='store_true', help='generate a basic coverage report for the RPC interface')
216
+
parser.add_argument('--ci', action='store_true', help='Run checks and code that are usually only enabled in a continuous integration environment')
219
217
parser.add_argument('--exclude', '-x', help='specify a comma-separated-list of scripts to exclude.')
220
218
parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')
221
219
parser.add_argument('--force', '-f', action='store_true', help='run tests even on platforms where they are disabled by default (e.g. windows).')
0 commit comments