mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-18 13:39:55 -04:00
lint: do yamllint install check once globally
This commit is contained in:
@@ -772,6 +772,11 @@ def main():
|
||||
load_antiFeatures_config()
|
||||
load_categories_config()
|
||||
|
||||
if options.force_yamllint:
|
||||
import yamllint # throw error if it is not installed
|
||||
|
||||
yamllint # make pyflakes ignore this
|
||||
|
||||
# Get all apps...
|
||||
allapps = metadata.read_metadata(options.appid)
|
||||
apps = common.read_app_args(options.appid, allapps, False)
|
||||
@@ -791,11 +796,6 @@ def main():
|
||||
if app.Disabled:
|
||||
continue
|
||||
|
||||
if options.force_yamllint:
|
||||
import yamllint # throw error if it is not installed
|
||||
|
||||
yamllint # make pyflakes ignore this
|
||||
|
||||
# only run yamllint when linting individual apps.
|
||||
if options.appid or options.force_yamllint:
|
||||
# run yamllint on app metadata
|
||||
|
||||
Reference in New Issue
Block a user