in packages/typespec-python/scripts/eng/run-tests.ts [63:69]
function myExecSync(command: string, folder: string, name?: string): void {
if (!sectionExistsInToxIni(command, folder)) {
console.log(`No section for ${command} in tox.ini for folder ${folder}. Skipping...`);
return;
}
execSync(getCommand(command, folder, name), { stdio: "inherit" });
}