brintos

brintos / llvm-project-archived public Read only

0
0
Text · 365 B · 18d2d45 Raw
10 lines · plain
1# TODO: This tool requires PyYAML, which is not yet a required build/test2# dependency. Remove this exclusion once it is a required dep.3 4# Since both lit and the python bindings use the same python interpreter,5# we can just check whether yaml can be imported here and exclude if not.6try:7    import yaml8except ModuleNotFoundError:9    config.unsupported = True10