Skip to content

Commit

Permalink
Merge pull request #3949 from tock/tools-boards-check-update
Browse files Browse the repository at this point in the history
tools: update check boards readme
  • Loading branch information
ppannuto committed Apr 2, 2024
2 parents 95162bf + c92d5fc commit 38220da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/check_boards_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import re
import sys

SKIP = ["boards/components", "boards/nordic/nrf52_components"]
SKIP = ["boards/components", "boards/nordic/nrf52_components", "boards/configurations"]


documented_boards = []
Expand Down Expand Up @@ -62,11 +62,11 @@


if len(missing) > 0:
print("ERROR: Boards missing documentation")
print("ERROR: Boards missing documentation in the main boards/README.md")
sys.exit(-1)

if len(removed) > 0:
print("ERROR: Boards documented that are missing")
print("ERROR: Boards that do not exist are documented in boards/README.md ")
sys.exit(-1)

print("Board documentation up to date.")

0 comments on commit 38220da

Please sign in to comment.