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
So far this package decides whether or not an input prompt is to be triggered, by simply checking the result of isinteractive(). Thus, the input prompt is pretty much only displayed if the user is executing the tests from the REPL by calling include("test/runtests.jl"). @oxinabox made the argument that this is a bit restrictive, which I tend to agree with.
We had a brief chat in slack about it and thought of some other strategies:
using a environment variable to detect CI
using a environment variable to activate the input prompt
read the callstack to see if Pkg.test(...) triggered the test run