mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
351 B
Python
14 lines
351 B
Python
import runs_on
|
|
import pytest
|
|
|
|
|
|
@runs_on.macos
|
|
@pytest.mark.ql_test("DB-CHECK", xfail=True)
|
|
def test(codeql, swift):
|
|
codeql.database.create(
|
|
command="xcodebuild build "
|
|
"-project codeql-swift-autobuild-test.xcodeproj "
|
|
"-target codeql-swift-autobuild-test "
|
|
"CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO",
|
|
)
|