Skip to content

Commit 0676ba1

Browse files
committed
Skip csharp integration tests on macos-26
1 parent 542d463 commit 0676ba1

File tree

4 files changed

+16
-8
lines changed
  • csharp/ql/integration-tests/posix
    • standalone_dependencies_no_framework
    • standalone_dependencies_nuget with_space
    • standalone_dependencies_nuget_no_sources
    • standalone_dependencies_nuget

4 files changed

+16
-8
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
import os
44

55

6-
# Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
6+
# Skipping the test on the ARM runners, macos-15 and macos-26, as we're running
7+
# into trouble with Mono and nuget.
78
@pytest.mark.only_if(
89
runs_on.linux
9-
or (runs_on.macos and runs_on.x86_64 and not runs_on.macos_15)
10+
or (runs_on.macos and runs_on.x86_64
11+
and not runs_on.macos_15 and not runs_on.macos_26)
1012
)
1113
def test(codeql, csharp):
1214
os.environ["CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES"] = (

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
import pytest
44

55

6-
# Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
6+
# Skipping the test on the ARM runners, macos-15 and macos-26, as we're running
7+
# into trouble with Mono and nuget.
78
@pytest.mark.only_if(
89
runs_on.linux
9-
or (runs_on.macos and runs_on.x86_64 and not runs_on.macos_15)
10+
or (runs_on.macos and runs_on.x86_64
11+
and not runs_on.macos_15 and not runs_on.macos_26)
1012
)
1113
def test(codeql, csharp):
1214
# making sure we're not doing any fallback restore:

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
import pytest
33

44

5-
# Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
5+
# Skipping the test on the ARM runners, macos-15 and macos-26, as we're running
6+
# into trouble with Mono and nuget.
67
@pytest.mark.only_if(
78
runs_on.linux
8-
or (runs_on.macos and runs_on.x86_64 and not runs_on.macos_15)
9+
or (runs_on.macos and runs_on.x86_64
10+
and not runs_on.macos_15 and not runs_on.macos_26)
911
)
1012
def test(codeql, csharp):
1113
codeql.database.create(build_mode="none")

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
import pytest
33

44

5-
# Skipping the test on the ARM runners, as we're running into trouble with Mono and nuget.
5+
# Skipping the test on the ARM runners, macos-15 and macos-26, as we're running
6+
# into trouble with Mono and nuget.
67
@pytest.mark.only_if(
78
runs_on.linux
8-
or (runs_on.macos and runs_on.x86_64 and not runs_on.macos_15)
9+
or (runs_on.macos and runs_on.x86_64
10+
and not runs_on.macos_15 and not runs_on.macos_26)
911
)
1012
def test(codeql, csharp):
1113
codeql.database.create(source_root="proj", build_mode="none")

0 commit comments

Comments
 (0)