You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/lib/ansible_test/_util/target/tools/yamlcheck.py

20 lines
311 B
Python

"""Show availability of PyYAML and libyaml support."""
from __future__ import annotations
import json
try:
import yaml
except ImportError:
yaml = None
try:
from yaml import CLoader
except ImportError:
CLoader = None
print(json.dumps(dict(
yaml=bool(yaml),
cloader=bool(CLoader),
)))