1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-14 13:00:08 +02:00

make yamllint optional

This commit is contained in:
Michael Pöhn 2020-04-24 15:12:41 +02:00
parent 4e69ff582f
commit 975538a7a7

View File

@ -42,8 +42,6 @@ import urllib.request
import zipfile
import tempfile
import json
import yamllint.config
import yamllint.linter
# TODO change to only import defusedxml once its installed everywhere
try:
@ -3745,6 +3743,13 @@ YAML_LINT_CONFIG = {'extends': 'default',
def run_yamllint(path, indent=0):
try:
import yamllint.config
import yamllint.linter
except ImportError:
return ''
result = []
with open(path, 'r', encoding='utf-8') as f:
problems = yamllint.linter.run(f, yamllint.config.YamlLintConfig(json.dumps(YAML_LINT_CONFIG)))