-
Hey, I am trying to create a custom query set for python (and in future some further languages) and for those I need to include some experimental libraries from semmle, more specifically , e.g. : I tried copying the complete experimental folder from the codeql repository into the folder where the query lies, but that does not seem to work. How can I include tertiary libraries into own suites? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
May I ask how you're creating your query pack? For me, the following interaction with the CodeQL CLI seemed to work just fine:
At this point I added a file import python
import experimental.semmle.python.Concepts
select 1 and now compiling it works:
So basically I think what may be missing here is the |
Beta Was this translation helpful? Give feedback.
May I ask how you're creating your query pack? For me, the following interaction with the CodeQL CLI seemed to work just fine:
At this point I added a file
test.ql
with the following contents:and now compiling it works: