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
print("%sWARNING!%s There is already a bitcoind process running on this system. Tests may fail unexpectedly due to resource contention!"% (BOLD[1], BOLD[0]))
251
+
except (OSError, subprocess.SubprocessError):
252
+
pass
253
+
254
+
# Warn if there is a cache directory
255
+
cache_dir="%s/test/cache"%build_dir
256
+
ifos.path.isdir(cache_dir):
257
+
print("%sWARNING!%s There is a cache directory here: %s. If tests fail unexpectedly, try deleting the cache directory."% (BOLD[1], BOLD[0], cache_dir))
0 commit comments