Anyone ever get into a spot where you try to run t...
# android-studio
c
Anyone ever get into a spot where you try to run tests (using the button in the gutter) and you just get a "Test events were not received". Restarting AS does the trick, but hoping that someone maybe knows of some other trick without a restart.
c
I usually find out that the compile step failed, but you are never notified unless you go into the build-pane. but the result will be that test events where not received
c
hm. if i select an individual test then it will compile. so i dont think its a compilation issue.
p
It hits me sometimes, usually when I have the gradle offline mode on and the tests need to bring a dependency down. I usually go to the gradle panel and hit the specific module tests, and it aborts with a better message. Usually reminding me that offline mode is on. But I guess that generic message is shown whenever the tests abort
👍 1
e
I've found that it happens when you have build/configuration cache enabled and you run tests with no changes since the last successful run
c
oh snap. i do have config cache. maybe thats it?