mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-27 07:56:14 +01:00
27 lines
489 B
Meson
27 lines
489 B
Meson
|
# Copyright 2024 Collabora Ltd.
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
|
||
|
lint_scripts = [
|
||
|
'black.sh',
|
||
|
'flake8.sh',
|
||
|
'reuse.sh',
|
||
|
'shellcheck.sh',
|
||
|
]
|
||
|
|
||
|
foreach test_name : lint_scripts
|
||
|
test(
|
||
|
test_name, files(test_name),
|
||
|
env : common_test_env,
|
||
|
suite : 'lint',
|
||
|
protocol : 'tap',
|
||
|
)
|
||
|
endforeach
|
||
|
|
||
|
test(
|
||
|
'check-missing-install-tag.py',
|
||
|
python,
|
||
|
args : ['-B', files('check-missing-install-tag.py')],
|
||
|
env : common_test_env,
|
||
|
suite : 'lint',
|
||
|
protocol : 'tap',
|
||
|
)
|