1
0
mirror of synced 2025-12-25 11:03:37 -05:00
Files
docs/data/reusables/codeql-cli/test-qlpack.md
Ben Ahmady 0466c51c41 Updates language identifiers and adds relevant notes (#42953)
Co-authored-by: Felicity Chapman <felicitymay@github.com>
Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com>
Co-authored-by: Peter Bengtsson <peterbe@github.com>
2023-10-03 10:02:11 +00:00

10 lines
759 B
Markdown

The following `qlpack.yml` file states that `my-github-user/my-query-tests` depends on `my-github-user/my-custom-queries` at a version greater than or equal to 1.2.3 and less than 2.0.0. It also declares that the CLI should use the Java `extractor` when creating test databases. The `tests: .` line declares that all `.ql` files in the pack should be run as tests when `codeql test run` is run with the `--strict-test-discovery` option. Typically, test packs do not contain a `version` property. This prevents you from accidentally publishing them.
```yaml
name: my-github-user/my-query-tests
dependencies:
my-github-user/my-custom-queries: ^1.2.3
extractor: {% ifversion codeql-language-identifiers-311 %}java-kotlin{% else %}java{% endif %}
tests: .
```