Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Óscar San José
2026-02-17 18:16:51 +01:00
committed by GitHub
parent 0676ba1c07
commit 5cf281a1b6
2 changed files with 9 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import pytest
import os
# Skipping the test on the ARM runners, macos-15 and macos-26, as we're running
# Skipping the test on the ARM runners, macos-15 and macos-26, as we're running
# into trouble with Mono and nuget.
@pytest.mark.only_if(
runs_on.linux

View File

@@ -6,8 +6,14 @@ import pytest
# 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 and not runs_on.macos_26)
or (
runs_on.macos
and runs_on.x86_64
and not (
runs_on.macos_15
or runs_on.macos_26
)
)
)
def test(codeql, csharp):
codeql.database.create(build_mode="none")