-
-
Notifications
You must be signed in to change notification settings - Fork 12
test: Android end-to-end integration tests #453
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
base: main
Are you sure you want to change the base?
Conversation
- Pass Sauce Labs secrets through CI workflows - Rename matrix variables for clarity - Add Android to test matrix with APK executable - Configure Sauce Labs environment variables for device testing
| - name: Install Pester module for pwsh | ||
| shell: pwsh | ||
| run: Install-Module -Name Pester -Force -SkipPublisherCheck |
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.
We can skip this step as Pester is pre-intalled on default GitHub runners:
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.
Let's get rid of it then!
| It "Contains threads information" { | ||
| if ($script:TestSetup.IsAndroid) { | ||
| # threads info missing on Android | ||
| # Q: Bug? |
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.
This seems to be related - getsentry/sentry-java#3295.
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.
Thanks for the link
This PR adds end-to-end testing support for Android. It adapts integration tests used for desktop platforms to work on Android too.