Just: modernize justfiles for just 1.48.1

Use f-strings instead of `+` concatenation, remove `set unstable`
(all previously unstable features are now stable), and add `[parallel]`
to swift `extra-tests` recipe.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Paolo Tranquilli
2026-04-02 17:26:00 +02:00
parent b4dac99920
commit cf317edfbb
15 changed files with 38 additions and 29 deletions

View File

@@ -2,8 +2,9 @@ import "../justfile"
base_flags := _python_env
all_checks := default_db_checks + """\
--consistency-queries=""" + consistency_queries
all_checks := f"""\
{{default_db_checks}}\
--consistency-queries={{consistency_queries}}"""
[no-cd]
test *ARGS=".": (_codeql_test "python" base_flags all_checks ARGS)