-
Notifications
You must be signed in to change notification settings - Fork 8
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
Liveness integration tests #46
base: main
Are you sure you want to change the base?
Conversation
3c2fcf8
to
32f7856
Compare
e3ac691
to
5b0b74c
Compare
closing in favor of #118 |
authenticator/src/test/java/com/amplifyframework/ui/authenticator/AuthenticatorViewModelTest.kt
Outdated
Show resolved
Hide resolved
} | ||
} | ||
} | ||
// task runNightlyTestsInDeviceFarmPool { |
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.
Remove commented-out sections
@@ -52,4 +57,11 @@ dependencies { | |||
implementation(libs.tensorflow.support) | |||
|
|||
testImplementation(projects.testing) | |||
androidTestImplementation(libs.amplify.auth) |
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.
Is this auth
dependency necessary here?
@@ -52,4 +57,11 @@ dependencies { | |||
implementation(libs.tensorflow.support) | |||
|
|||
testImplementation(projects.testing) | |||
androidTestImplementation(libs.amplify.auth) | |||
androidTestImplementation(libs.test.compose.junit) |
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 wrap all of these testing dependencies up in a bundle
in the toml file so that we don't have to repeat this if we add integration tests elsewhere.
|
||
subprojects { | ||
afterEvaluate { project -> | ||
if (module_backends.containsKey(project.name)) { |
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 file should be implemented as a convention plugin an then applied in relevant projects. See here for our existing convention plugins.
…tor/AuthenticatorViewModelTest.kt Co-authored-by: Matt Creaser <[email protected]>
Issue #, if available:
Description of changes:
How did you test these changes?
(Please add a line here how the changes were tested)
Documentation update required?
General Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.