File tree Expand file tree Collapse file tree 5 files changed +25
-7
lines changed
csharp/ql/integration-tests
all-platforms/diag_missing_project_files
standalone_dependencies_no_framework
standalone_dependencies_nuget with_space
standalone_dependencies_nuget_no_sources
standalone_dependencies_nuget Expand file tree Collapse file tree 5 files changed +25
-7
lines changed Original file line number Diff line number Diff line change
1
+ import pytest
2
+ import runs_on
3
+
4
+
5
+ # Skipping the test on macos-15, as we're running into trouble.
6
+ @pytest .mark .only_if (not runs_on .macos_15 )
1
7
def test (codeql , csharp ):
2
8
codeql .database .create (_assert_failure = True )
Original file line number Diff line number Diff line change 3
3
import os
4
4
5
5
6
- # Skipping the test on the ARM runners, as we're running into trouble with Mono and nuget.
7
- @pytest .mark .only_if (runs_on .linux or (runs_on .macos and runs_on .x86_64 ))
6
+ # Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
7
+ @pytest .mark .only_if (
8
+ runs_on .linux
9
+ or (runs_on .macos and runs_on .x86_64 and not runs_on .macos_15 )
10
+ )
8
11
def test (codeql , csharp ):
9
12
os .environ ["CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES" ] = (
10
13
"/non-existent-path"
Original file line number Diff line number Diff line change 3
3
import pytest
4
4
5
5
6
- # Skipping the test on the ARM runners, as we're running into trouble with Mono and nuget.
7
- @pytest .mark .only_if (runs_on .linux or (runs_on .macos and runs_on .x86_64 ))
6
+ # Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
7
+ @pytest .mark .only_if (
8
+ runs_on .linux
9
+ or (runs_on .macos and runs_on .x86_64 and not runs_on .macos_15 )
10
+ )
8
11
def test (codeql , csharp ):
9
12
# making sure we're not doing any fallback restore:
10
13
os .environ ["CODEQL_EXTRACTOR_CSHARP_BUILDLESS_NUGET_FEEDS_CHECK_FALLBACK_TIMEOUT" ] = "1"
Original file line number Diff line number Diff line change 2
2
import pytest
3
3
4
4
5
- # Skipping the test on the ARM runners, as we're running into trouble with Mono and nuget.
6
- @pytest .mark .only_if (runs_on .linux or (runs_on .macos and runs_on .x86_64 ))
5
+ # Skipping the test on the ARM runners and macos-15, as we're running into trouble with Mono and nuget.
6
+ @pytest .mark .only_if (
7
+ runs_on .linux
8
+ or (runs_on .macos and runs_on .x86_64 and not runs_on .macos_15 )
9
+ )
7
10
def test (codeql , csharp ):
8
11
codeql .database .create (build_mode = "none" )
Original file line number Diff line number Diff line change 3
3
4
4
5
5
# Skipping the test on the ARM runners, as we're running into trouble with Mono and nuget.
6
- @pytest .mark .only_if (runs_on .linux or (runs_on .macos and runs_on .x86_64 ))
6
+ @pytest .mark .only_if (
7
+ runs_on .linux
8
+ or (runs_on .macos and runs_on .x86_64 and not runs_on .macos_15 )
9
+ )
7
10
def test (codeql , csharp ):
8
11
codeql .database .create (source_root = "proj" , build_mode = "none" )
You can’t perform that action at this time.
0 commit comments