mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
10 lines
280 B
Python
10 lines
280 B
Python
import os
|
|
|
|
|
|
def test(codeql, go):
|
|
os.environ["CODEQL_EXTRACTOR_GO_EXTRACT_VENDOR_DIRS"] = "true"
|
|
codeql.database.create(source_root="src")
|
|
|
|
def test_extractor_option(codeql, go):
|
|
codeql.database.create(source_root="src", extractor_option = "extract_vendor_dirs=true")
|