File tree Expand file tree Collapse 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 Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 33import 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)
1113def test (codeql , csharp ):
1214 os .environ ["CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES" ] = (
Original file line number Diff line number Diff line change 33import 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)
1113def test (codeql , csharp ):
1214 # making sure we're not doing any fallback restore:
Original file line number Diff line number Diff line change 22import 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)
1012def test (codeql , csharp ):
1113 codeql .database .create (build_mode = "none" )
Original file line number Diff line number Diff line change 22import 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)
1012def test (codeql , csharp ):
1113 codeql .database .create (source_root = "proj" , build_mode = "none" )
You can’t perform that action at this time.
0 commit comments