scripted-diff: Remove obsolete comment
What changed, and why it matters
This commit only removes a now-outdated sentence from five documentation files. The sentence told readers that some tests are skipped if Python 3 is missing, but that is no longer true after other recent changes. No code, build scripts, tests, or configuration were modified.
No security action needed. This is a routine documentation maintenance commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
A scripted sed command removed the trailing comment ’ Some tests are disabled if Python 3 is not available.’ from ctest command examples in doc/build-freebsd.md, doc/build-netbsd.md, doc/build-openbsd.md, doc/build-osx.md, and doc/build-windows-msvc.md. The change is purely cosmetic documentation cleanup referencing PRs #32697 and #32881. There are no functional changes.
Changed components
doc/build-freebsd.mddoc/build-netbsd.mddoc/build-openbsd.mddoc/build-osx.mddoc/build-windows-msvc.mdInspect captured patch +6 / −6
diff --git a/doc/build-freebsd.md b/doc/build-freebsd.md
index fee20f84..b5940c0f 100644
--- a/doc/build-freebsd.md
+++ b/doc/build-freebsd.md
@@ -101,5 +101,5 @@ cmake -B build -DENABLE_WALLET=OFF
```bash
cmake --build build # Append "-j N" for N parallel jobs.
-ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
+ctest --test-dir build # Append "-j N" for N parallel tests.
```
diff --git a/doc/build-netbsd.md b/doc/build-netbsd.md
index f2631777..0c7f440b 100644
--- a/doc/build-netbsd.md
+++ b/doc/build-netbsd.md
@@ -115,5 +115,5 @@ Build and run the tests:
```bash
cmake --build build # Append "-j N" for N parallel jobs.
-ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
+ctest --test-dir build # Append "-j N" for N parallel tests.
```
diff --git a/doc/build-openbsd.md b/doc/build-openbsd.md
index 99d4ec25..fdeafe88 100644
--- a/doc/build-openbsd.md
+++ b/doc/build-openbsd.md
@@ -93,7 +93,7 @@ Run `cmake -B build -LH` to see the full list of available options.
```bash
cmake --build build # Append "-j N" for N parallel jobs.
-ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
+ctest --test-dir build # Append "-j N" for N parallel tests.
```
## Resource limits
diff --git a/doc/build-osx.md b/doc/build-osx.md
index e1bf0374..001c0188 100644
--- a/doc/build-osx.md
+++ b/doc/build-osx.md
@@ -170,7 +170,7 @@ Run the following in your terminal to compile Bitcoin Core:
``` bash
cmake --build build # Append "-j N" here for N parallel jobs.
-ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
+ctest --test-dir build # Append "-j N" for N parallel tests.
```
### 3. Deploy (optional)
diff --git a/doc/build-windows-msvc.md b/doc/build-windows-msvc.md
index 7c07a198..cf84cddb 100644
--- a/doc/build-windows-msvc.md
+++ b/doc/build-windows-msvc.md
@@ -57,7 +57,7 @@ Run `cmake -B build -LH` to see the full list of available options.
```
cmake -B build --preset vs2022-static # It might take a while if the vcpkg binary cache is unpopulated or invalidated.
cmake --build build --config Release # Append "-j N" for N parallel jobs.
-ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
+ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests.
cmake --install build --config Release # Optional.
```
@@ -66,7 +66,7 @@ cmake --install build --config Release # Optional.
```
cmake -B build --preset vs2022 -DBUILD_GUI=OFF # It might take a while if the vcpkg binary cache is unpopulated or invalidated.
cmake --build build --config Release # Append "-j N" for N parallel jobs.
-ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
+ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests.
```
### 6. vcpkg-specific Issues and Workarounds
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.