Run all rules at once #10374
Answered
by
MathiasVP
CaledoniaProject
asked this question in
Q&A
Run all rules at once
#10374
-
I'm looking for something equivalent to:
Is there any similar commands? |
Beta Was this translation helpful? Give feedback.
Answered by
MathiasVP
Sep 12, 2022
Replies: 1 comment
-
You can run all queries in a given suite on a database using a command like:
which will run all of the queries in the Java security-and-quality suite. Note that CodeQL will schedule all the queries to be run as soon as the engine determines that it's best to start them. This won't always mean that they all run at once (since it might not be the best option due to resource constraints like memory pressure, number of available cores, etc.) Does that help? |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
CaledoniaProject
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @CaledoniaProject,
You can run all queries in a given suite on a database using a command like:
which will run all of the queries in the Java security-and-quality suite.
Note that CodeQL will schedule all the queries to be run as soon as the engine determines that it's best to start them. This won't always mean that they all run at once (since it might not be the best option due to resource constraints like memory pressure, number of available cores, etc.)
Does that help?