-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[Testing] Recover the uitest-build task on Android cake #28452
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
Conversation
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.
Pull Request Overview
This PR recovers the "uitest-build" task in the Android cake file to allow running UITests as described in the documentation.
- Adds a new task "uitest-build" that depends on "dotnet-buildtasks".
- Introduces the helper method ExecuteBuildUITestApp to build the UI Test app using DotNetBuild.
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.
@jsuarezruiz I have tested the current code changes which are not fully functional as expected. To get it working properly, a few additional modifications are necessary. Could you please review the changes attached below and commit them?
Reference:
Line 9 in b43b974
var projectPath = Argument("project", EnvironmentVariable("IOS_TEST_PROJECT") ?? DEFAULT_IOS_PROJECT); |
58ed714
to
f368866
Compare
* Recover the uitest-build task on Android cake * Update android.cake --------- Co-authored-by: Shane Neuville <shneuvil@microsoft.com>
Description of Change
Recover the
uitest-build
task on Android cake.We had the
uitest-build
task in the Android cake filemaui/eng/devices/android.cake
Line 105 in a7e1bce
This PR recover it to keep allowing to run UITests like we describe in the wiki https://github.com/dotnet/maui/wiki/UITests:
If not necessary, I should review the Wiki to update it.