Python: Fix CLI integration tests

Two issues:

- Tests relying on existing query machinery (i.e. `import python`) were not resolving
  correctly due to a bad `qlpack.yml` file.
- The diagnostics output tests needed an updated import to account for their new location.
This commit is contained in:
Taus
2024-03-07 13:43:08 +00:00
parent 0550c46766
commit cac5a8236e
3 changed files with 4 additions and 3 deletions

View File

@@ -6,6 +6,7 @@ provide:
- "*/ql/consistency-queries/qlpack.yml" - "*/ql/consistency-queries/qlpack.yml"
- "*/ql/automodel/src/qlpack.yml" - "*/ql/automodel/src/qlpack.yml"
- "*/ql/automodel/test/qlpack.yml" - "*/ql/automodel/test/qlpack.yml"
- "python/extractor/qlpack.yml"
- "shared/**/qlpack.yml" - "shared/**/qlpack.yml"
- "cpp/ql/test/query-tests/Security/CWE/CWE-190/semmle/tainted/qlpack.yml" - "cpp/ql/test/query-tests/Security/CWE/CWE-190/semmle/tainted/qlpack.yml"
- "go/ql/config/legacy-support/qlpack.yml" - "go/ql/config/legacy-support/qlpack.yml"

View File

@@ -1,6 +1,6 @@
import os import os
import sys import sys
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..", "integration-tests")) sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..", "..", "..", "integration-tests"))
import diagnostics_test_utils import diagnostics_test_utils
test_db = "db" test_db = "db"

View File

@@ -1,6 +1,6 @@
name: extractor-python name: extractor-python
dependencies: dependencies:
codeql/python-all: "*" codeql/python-all: ${workspace}
codeql/python-queries: "*" codeql/python-queries: ${workspace}
extractor: python extractor: python
warnOnImplicitThis: true warnOnImplicitThis: true