summaryrefslogtreecommitdiffstats
path: root/testing/gen-languages-all
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-06-19 07:00:25 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-06-19 07:00:25 +0000
commita5907b904f568d3249b7629ea9ff3b932f723ce3 (patch)
treeb82c427c125ea5fcf9d1e2fb48e4a529fc932fba /testing/gen-languages-all
parentAdding upstream version 2.18.1. (diff)
downloadpre-commit-upstream/2.19.0.tar.xz
pre-commit-upstream/2.19.0.zip
Adding upstream version 2.19.0.upstream/2.19.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/gen-languages-all')
-rwxr-xr-xtesting/gen-languages-all12
1 files changed, 6 insertions, 6 deletions
diff --git a/testing/gen-languages-all b/testing/gen-languages-all
index dfd92c0..05f8929 100755
--- a/testing/gen-languages-all
+++ b/testing/gen-languages-all
@@ -3,15 +3,15 @@ from __future__ import annotations
import sys
-LANGUAGES = [
+LANGUAGES = (
'conda', 'coursier', 'dart', 'docker', 'docker_image', 'dotnet', 'fail',
'golang', 'lua', 'node', 'perl', 'pygrep', 'python', 'r', 'ruby', 'rust',
'script', 'swift', 'system',
-]
-FIELDS = [
- 'ENVIRONMENT_DIR', 'get_default_version', 'healthy', 'install_environment',
- 'run_hook',
-]
+)
+FIELDS = (
+ 'ENVIRONMENT_DIR', 'get_default_version', 'health_check',
+ 'install_environment', 'run_hook',
+)
def main() -> int: