Hey there,
I’m wondering if it’s possible to get the exit code of a command started with ‘run_command’ like the following:
self.view.window().run_command("exec", {
"cmd": [command],
"shell": True,
"working_dir": working_dir
})
I’m running my tests with this command and trying to find a way to tell, if they ran successfully or not. I want to display the panel with the test output only if the tests were failing.
Cheers,
Sebastian