Ubuntu – Why does Python unittest auto-discovery not work when running in a subprocess?
I'd like to be able to run Python's unittest module programmatically via a subprocess (e.g. subprocess.Popen(), subprocess.run(), asyncio.create_subprocess_exec()) and have it auto-discover tests. I do not want to run the tests by importing the unittest module into my script, because…