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
Merge #14630: test_runner: Remove travis specific code
fa43626 test_runner: Remove travis specific code (MarcoFalke)
Pull request description:
The tests are no longer run on travis, but in a docker, developer machines or a windows vm.
The code was essentially dead for months now. Fix that by explicitly passing in `--ci` to the test runner on our docker and appveyor windows vm.
Tree-SHA512: 5d48693c03e8eb27536658ccf9ba738fe93a72abd4b72c80caac084b5b2cdffa77a1031a671eeefe70b71d63500f55917803d4be54d01849722afdccb700a9e6
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