-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Skip csharp integration tests on macos-26 #21339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
0676ba1
5cf281a
9efe112
004ebd3
60b8213
0b31ca4
6029566
6760390
fa73cd5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,12 @@ | |
| import pytest | ||
|
|
||
|
|
||
| # Skipping the test on the ARM runners, as we're running into trouble with Mono and nuget. | ||
| # 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 | ||
| or (runs_on.macos and runs_on.x86_64 and not runs_on.macos_15) | ||
| or (runs_on.macos and runs_on.x86_64 | ||
| and not runs_on.macos_15 and not runs_on.macos_26) | ||
| ) | ||
|
||
| def test(codeql, csharp): | ||
| codeql.database.create(source_root="proj", build_mode="none") | ||
Uh oh!
There was an error while loading. Please reload this page.