-
-
Notifications
You must be signed in to change notification settings - Fork 230
ci: Use Cirrus Runners for iOS integration tests #4951
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 9 commits
1df212b
192b825
25b97b3
04a5b89
7f51356
175a733
ebc5740
aff5bf1
841dbc3
7d8d1ed
3776ef8
6ec1266
f62fba8
23897f2
f5cb993
b68bb19
2746f32
2405b8e
847e5e8
ba35dc4
c294951
ea37662
bec18f0
aa77b0c
d638ee1
d4cf33f
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 |
|---|---|---|
|
|
@@ -26,6 +26,12 @@ | |
| _logger = Substitute.ForPartsOf<TestOutputDiagnosticLogger>(testOutputHelper); | ||
| } | ||
|
|
||
| [Fact] | ||
| public void This_Test_Should_Fail() | ||
|
||
| { | ||
| Assert.True(SentrySdk.IsEnabled); | ||
|
Check failure on line 32 in test/Sentry.Tests/SentrySdkTests.cs
|
||
| } | ||
|
|
||
| [Fact] | ||
| public void IsEnabled_StartsOffFalse() | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: Refactor
Is there a "nicer" way to describe this test matrix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we can somehow make it work, I'd prefer a simple static matrix:
and then somehow filter what we run from the CI. I'm not sure how to do that with Pwsh/Pester from the command line, but the Pester extension for VS Code is able to run specific matrix configurations, so it should be somehow possible... 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.