Skip to content

Commit 5cf281a

Browse files
oscarsjCopilot
andauthored
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 0676ba1 commit 5cf281a

File tree

2 files changed

+9
-3
lines changed
  • csharp/ql/integration-tests/posix
    • standalone_dependencies_no_framework
    • standalone_dependencies_nuget

2 files changed

+9
-3
lines changed

csharp/ql/integration-tests/posix/standalone_dependencies_no_framework/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44

55

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

csharp/ql/integration-tests/posix/standalone_dependencies_nuget/test.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@
66
# into trouble with Mono and nuget.
77
@pytest.mark.only_if(
88
runs_on.linux
9-
or (runs_on.macos and runs_on.x86_64
10-
and not runs_on.macos_15 and not runs_on.macos_26)
9+
or (
10+
runs_on.macos
11+
and runs_on.x86_64
12+
and not (
13+
runs_on.macos_15
14+
or runs_on.macos_26
15+
)
16+
)
1117
)
1218
def test(codeql, csharp):
1319
codeql.database.create(build_mode="none")

0 commit comments

Comments
 (0)