mirror of
https://github.com/github/codeql.git
synced 2026-08-02 08:23:01 +02:00
16 lines
409 B
Python
16 lines
409 B
Python
import pytest
|
|
import runs_on
|
|
|
|
|
|
@runs_on.posix
|
|
@pytest.mark.ql_test("DB-CHECK", xfail=runs_on.linux)
|
|
def test(codeql, swift):
|
|
codeql.database.create(command="swift build")
|
|
|
|
@runs_on.posix
|
|
@pytest.mark.ql_test(None)
|
|
def test_do_not_print_env(codeql, swift, check_env_not_dumped):
|
|
codeql.database.create(command="swift build", _env={
|
|
"CODEQL_EXTRACTOR_SWIFT_LOG_LEVELS": "out:text:trace",
|
|
})
|