We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Dropshots stores screenshots in my androidTest directory even when my tests are present in androidTestDebug. Is this intentional?
androidTest
androidTestDebug
The text was updated successfully, but these errors were encountered:
Hi Saket, Interesting question, do you specify a specific path for your debug tests? this is where the folder of the screenshots is defined: https://github.com/dropbox/dropshots/blob/main/dropshots-gradle-plugin/src/main/kotlin/com/dropbox/dropshots/DropshotsPlugin.kt#L47 Currently the folder doesn't seem to take into account the flavor and that is a problem if you are expecting different outputs from different flavors
Sorry, something went wrong.
do you specify a specific path for your debug tests?
do you mean in my build script?
@rharter what was the reasoning to have the screenshots in the "screenshot" folder and not an asset folder inside a res/assets folder ?
res/assets
It's integrated into assets at built time, but it's also used as task input and output, so plays into Gradles up-to-date checks.
No branches or pull requests
Dropshots stores screenshots in my
androidTest
directory even when my tests are present inandroidTestDebug
. Is this intentional?The text was updated successfully, but these errors were encountered: