You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
I am trying to make use of Spoon's Device/skipDevice feature and no matter how I try to implement it, it seems to kick off every device connected instead of the ones I am telling it to try/skip.
(I should mention that the devices are over a network but are accessed normally through adb shell 172.24.197.74:7441)
I kick everything off with - ./gradlew clean spoon -i
Everything runs fine and the outputs report normally, but the tests run across every device connected instead of the ones specified (and I've tried enabling one and not the other and visa versa)
If I try to use spoon without the afterEvaluate feature, I end up with this error - specified for property 'applicationApk' does not exist
Any thoughts on what I might be able to try?
Thank you
The text was updated successfully, but these errors were encountered:
On Fri, Mar 10, 2017, 2:17 PM Nefariis ***@***.***> wrote:
I am trying to make use of Spoon/s Device/skipDevice feature and no matter
how I try to implement it, it seems to kick off every device connected
instead of the ones I am telling it to try/skip.
buildscript { repositories { jcenter() mavenCentral() maven { url '
https://maven.fabric.io/public' } } dependencies { classpath
'com.android.tools.build:gradle:2.3.0' classpath
'io.fabric.tools:gradle:1.22.0' classpath
'com.stanfy.spoon:spoon-gradle-plugin:1.2.2' } }
afterEvaluate { apply plugin: 'spoon' spoon { // debug = true; //
codeCoverage = true devices = ['172.24.197.74:7437', '172.24.197.74:7401']
skipDevices = ['172.24.197.74:7441', '172.24.197.74:7445'] } }
I kick everything off with - ./gradlew clean spoon -i
Everything runs fine and the outputs report normally, but the tests run
across ever device connected instead of the ones specified (and I've tried
enabling one and not the other and visa versa)
If I try to use spoon without the afterEvaluate feature, I end up with
this error -
specified for property 'applicationApk' does not exist
Any thoughts on what I might be able to try?
Thank you
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#147>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/AASx-96ldn3Sy5gKSzuMpf3CyLkasjLeks5rkcv7gaJpZM4MZ7bp>
.
i am connecting all devices which are connected to openstf device to my machine.
and running the spoon test, but spoon is not picking the connected device to run
`2017-03-16 00:02:28 [SR.runTests] Executing instrumentation suite on 0 device(s).
:app:spoon
BUILD SUCCESSFUL
`
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am trying to make use of Spoon's Device/skipDevice feature and no matter how I try to implement it, it seems to kick off every device connected instead of the ones I am telling it to try/skip.
(I should mention that the devices are over a network but are accessed normally through
adb shell 172.24.197.74:7441
)I kick everything off with -
./gradlew clean spoon -i
Everything runs fine and the outputs report normally, but the tests run across every device connected instead of the ones specified (and I've tried enabling one and not the other and visa versa)
If I try to use
spoon
without theafterEvaluate
feature, I end up with this error -specified for property 'applicationApk' does not exist
Any thoughts on what I might be able to try?
Thank you
The text was updated successfully, but these errors were encountered: