mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
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.
8 lines
252 B
Python
8 lines
252 B
Python
import os
|
|
import sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..", "..", "..", "integration-tests"))
|
|
import diagnostics_test_utils
|
|
|
|
test_db = "db"
|
|
diagnostics_test_utils.check_diagnostics(".", test_db, skip_attributes=True)
|