mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-19 21:30:10 +01:00
scanner: check for test
in path relative to build dir
This was degrading scanner errors to warnings whenever the path from the current running install of fdroidserver contained test, as has been happening in the CI image builder: https://gitlab.com/fdroid/ci-images-server/-/blob/master/test#L6
This commit is contained in:
parent
d595948616
commit
c90a72e14d
@ -234,7 +234,7 @@ def scan_source(build_dir, build=metadata.Build()):
|
||||
return ignoreproblem(what, path_in_build_dir)
|
||||
if todelete(path_in_build_dir):
|
||||
return removeproblem(what, path_in_build_dir, filepath)
|
||||
if 'src/test' in filepath or '/test/' in filepath:
|
||||
if 'src/test' in filepath or '/test/' in path_in_build_dir:
|
||||
return warnproblem(what, path_in_build_dir)
|
||||
if options and 'json' in vars(options) and options.json:
|
||||
json_per_build['errors'].append([what, path_in_build_dir])
|
||||
|
Loading…
Reference in New Issue
Block a user