mirror of
https://github.com/github/codeql.git
synced 2026-08-02 00:13:00 +02:00
9 lines
191 B
Python
9 lines
191 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", keep_trap=True)
|