Is `pants --no-local-cache test` supposed to not u...
# development
n
Is
pants --no-local-cache test
supposed to not use the local cache, or is there more I need to do? I'm trying to get at the sandboxes for processes run via pytest / RuleRunner and I'm finding they're not being created due to the process result getting a local cache hit. Removing
~/.cache/pants
works...
n
You likely also want to add
--no-pantsd
or the test results will be cached in memory by the daemon.
👍 1