Skip to content

Commit 413e438

Browse files
author
MarcoFalke
committed
Merge #16243: doc: Remove travis badge from readme
e91f0a7 doc: Remove travis badge from readme (MarcoFalke) Pull request description: The readme(s) are shipped in the released source-code archive, in which case the travis badge is useless since it doesn't link to the travis result of the correct commit/tag/branch. GitHub embeds the correct links for each tag or commit that ci ran on, so we don't need this link in the readme. ACKs for commit e91f0a: hebasto: ACK e91f0a7 Tree-SHA512: 860435a58b38a9bd0bc62a1e74b3a63c138c9a2f09008a090d5ecc7fd86fa908d2e5eda41d16606507a238d9488fa5323405364a9556b670684a2e4838aead2d
2 parents b1344ea + e91f0a7 commit 413e438

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
Bitcoin Core integration/staging tree
22
=====================================
33

4-
[![Build Status](https://travis-ci.org/bitcoin/bitcoin.svg?branch=master)](https://travis-ci.org/bitcoin/bitcoin)
5-
64
https://bitcoincore.org
75

86
What is Bitcoin?

test/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ bitcoin-tx.
1313
- [lint](/test/lint/) which perform various static analysis checks.
1414

1515
The util tests are run as part of `make check` target. The functional
16-
tests and lint scripts are run by the travis continuous build process whenever a pull
17-
request is opened. All sets of tests can also be run locally.
16+
tests and lint scripts can be run as explained in the sections below.
1817

1918
# Running tests locally
2019

test/functional/test_runner.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@
6767
TEST_EXIT_SKIPPED = 77
6868

6969
EXTENDED_SCRIPTS = [
70-
# These tests are not run by the travis build process.
70+
# These tests are not run by default.
7171
# Longest test should go first, to favor running tests in parallel
7272
'feature_pruning.py',
7373
'feature_dbcrash.py',
7474
]
7575

7676
BASE_SCRIPTS = [
77-
# Scripts that are run by the travis build process.
77+
# Scripts that are run by default.
7878
# Longest test should go first, to favor running tests in parallel
7979
'feature_fee_estimation.py',
8080
'wallet_hd.py',
@@ -495,7 +495,8 @@ def get_next(self):
495495
for job in self.jobs:
496496
(name, start_time, proc, testdir, log_out, log_err) = job
497497
if int(time.time() - start_time) > self.timeout_duration:
498-
# In travis, timeout individual tests (to stop tests hanging and not providing useful output).
498+
# Timeout individual tests if timeout is specified (to stop
499+
# tests hanging and not providing useful output).
499500
proc.send_signal(signal.SIGINT)
500501
if proc.poll() is not None:
501502
log_out.seek(0), log_err.seek(0)
@@ -583,7 +584,7 @@ def check_script_list(*, src_dir, fail_on_warn):
583584
if len(missed_tests) != 0:
584585
print("%sWARNING!%s The following scripts are not being run: %s. Check the test lists in test_runner.py." % (BOLD[1], BOLD[0], str(missed_tests)))
585586
if fail_on_warn:
586-
# On travis this warning is an error to prevent merging incomplete commits into master
587+
# On CI this warning is an error to prevent merging incomplete commits into master
587588
sys.exit(1)
588589

589590

0 commit comments

Comments
 (0)