execute_test.py
pollutes test output with error traces (MacOS)
#1713
Labels
bug
Something isn't working
execute_test.py
pollutes test output with error traces (MacOS)
#1713
Follow-up issue of #1642.
We were able to silence the undesired stacktrace printing via #1708 – this, however, only appears to work on Linux systems and not on MacOS, because on MacOS, the
multiprocessing
package behaves differently.We weren’t able to find a suitable workaround for MacOS, except if we’d account for this issue inside the underlying
execute.py
module (e.g. by trying to silencestderr
there, with a/dev/null
redirect). That is probably not a good trade-off, because we’d potentially be risking to change production behaviour only to fix a minor, local testing issue. There might be other approaches to solve this problem, though.The text was updated successfully, but these errors were encountered: