mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
12 lines
316 B
Python
12 lines
316 B
Python
import runs_on
|
|
import pytest
|
|
|
|
|
|
# Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
|
|
@pytest.mark.only_if(
|
|
runs_on.linux
|
|
or (runs_on.macos and runs_on.x86_64 and not runs_on.macos_15)
|
|
)
|
|
def test(codeql, csharp):
|
|
codeql.database.create(build_mode="none")
|