Is it expected that `--no-process-cleanup` doesn't...
# general
b
Is it expected that
--no-process-cleanup
doesn't work for running
shunit2
tests? I've been trying to debug some fixture files not being included in my tests, but I don't actually end up with any preserved sandbox directories.
1
b
Are the test runs being cached or memozied? In that case Pants never runs the process and can't leak it 🙂
b
🤔 Hrmm... perhaps it was. I'm seeing the preserved sandbox directories now.
w
can use
test --force
to re-run a successful test
🙌 2
b
aaah, helpful 👍