-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
feat(#334): add apk for cares malawi #334
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.
All the code changes look great!
Regarding the test failure, I am completely baffled. I believe it is failing here when it is waiting for the Gamma login screen to show up.
'has element with id: form' doesn't match: <?xml version="1.0" encoding="UTF-8"?><html xmlns:html="http://www.w3.org/1999/xhtml">
You can see from the error message that the actual page displayed is just the initial loading page for the webapp (with the loading spinner), but for some reason the loading never finishes and the login page is not displayed. Currently the test is waiting 7sec
for the login screen to load. I tried increasing that to 2min
but the test still fails.
I have not been able to reproduce this issue locally, however. The test runs fine for me, both on its own when I run it in Android Studio and when I run it via make test-ui
.
I can reproduce the issue on top of master
though. So, it is clearly not related to this PR at all...
If nobody has any brilliant ideas on what could be going wrong with this test, we may just have to log a new issue to get it fixed and skip it in the code for now. There is not much sense in it being a huge blocker for this PR, but I am fresh out of ideas for what could be causing the problem....
@@ -0,0 +1,5 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<resources> | |||
<string name="app_name">Cares Malawi(KCH) App</string> |
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.
Minor, but should there be a space before the parenthesis? Not sure how this is usually rendered, but normally I would expect something like: Cares Malawi (KCH) App
@@ -0,0 +1,5 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<resources> | |||
<string name="app_name">Cares Malawi(MPC) App</string> |
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.
Same here, not sure if we want a space before the parenthesis? Cares Malawi (MPC) App
I agree with @jkuester - the failure probably has nothing to do with this PR. Let me know when it's ready and I can force merge this to get past the blocking required build. @jkuester Would you mind raising an issue about the test failure? So far what I have is...
|
I do not see how it could be a Gamma problem since it works fine locally. (And even after a 2min wait on the CI, it never made it to the login page...) |
No description provided.