Stop the shell process of the Android Studio does not stop the tests

I am doing some gradle tasks from a shell script, and find that I cannot kill the process:

enter image description here

I click the stop process as shown in the image, but it does not stop the Upress Espresso tests on the emulator. the shell script is as simple as "./gradlew spoonDebugAndroidTest"

Is there a way to stop the tests without closing the emulator and get rid of the red box saying that I have a process?

+8
shell android-studio android-espresso
source share
1 answer

You can try to do this in Android Studio Terminal: ./gradlew --stop . He must stop all tasks.

0
source share

All Articles