Codebase list python-procrunner / d944faf7-9a03-457d-bb65-050eec4c9252/v2.3.2 .azure-pipelines / syntax-validation.py
d944faf7-9a03-457d-bb65-050eec4c9252/v2.3.2

Tree @d944faf7-9a03-457d-bb65-050eec4c9252/v2.3.2 (Download .tar.gz)

syntax-validation.py @d944faf7-9a03-457d-bb65-050eec4c9252/v2.3.2raw · history · blame

import ast
import os
import sys

print("Python", sys.version, "\n")

failures = 0

for base, _, files in os.walk("."):
    for f in files:
        if not f.endswith(".py"):
            continue
        filename = os.path.normpath(os.path.join(base, f))
        try:
            with open(filename) as fh:
                ast.parse(fh.read())
        except SyntaxError as se:
            failures += 1
            print(
                f"##vso[task.logissue type=error;sourcepath={filename};"
                f"linenumber={se.lineno};columnnumber={se.offset};]"
                f"SyntaxError: {se.msg}"
            )
            print(" " + se.text + " " * se.offset + "^")
            print(f"SyntaxError: {se.msg} in {filename} line {se.lineno}")
            print()

if failures:
    print(f"##vso[task.logissue type=warning]Found {failures} syntax error(s)")
    print(f"##vso[task.complete result=Failed;]Found {failures} syntax error(s)")