mirror of
https://github.com/github/codeql.git
synced 2026-05-14 19:29:28 +02:00
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>
11 lines
225 B
Makefile
11 lines
225 B
Makefile
import "../justfile"
|
|
|
|
base_flags := _python_env
|
|
|
|
all_checks := f"""\
|
|
{{default_db_checks}}\
|
|
--consistency-queries={{consistency_queries}}"""
|
|
|
|
[no-cd]
|
|
test *ARGS=".": (_codeql_test "python" base_flags all_checks ARGS)
|