Browse Source

Fix `doc_status.py` trying to get removed `version` tag from XML

This also runs `doc_status.py` on CI to catch potential future regressions.
Hugo Locurcio 2 years ago
parent
commit
c16db0935f
2 changed files with 1 additions and 6 deletions
  1. 1 0
      .github/workflows/static_checks.yml
  2. 0 6
      doc/tools/doc_status.py

+ 1 - 0
.github/workflows/static_checks.yml

@@ -86,6 +86,7 @@ jobs:
 
       - name: Documentation checks
         run: |
+          doc/tools/doc_status.py doc/classes modules/*/doc_classes platform/*/doc_classes
           doc/tools/make_rst.py --dry-run --color doc/classes modules platform
 
       - name: Style checks via clang-format (clang_format.sh)

+ 0 - 6
doc/tools/doc_status.py

@@ -383,12 +383,6 @@ for file in input_file_list:
     tree = ET.parse(file)
     doc = tree.getroot()
 
-    if "version" not in doc.attrib:
-        print('Version missing from "doc"')
-        sys.exit(255)
-
-    version = doc.attrib["version"]
-
     if doc.attrib["name"] in class_names:
         continue
     class_names.append(doc.attrib["name"])