[tests] Upgrade python tests to 3.9 (#8181)

New python 3.6 deployments will fail today per the previous announcement https://vercel.com/changelog/python-3-6-is-being-deprecated

This PR updates the tests to use python 3.9 instead.
This commit is contained in:
Steven
2022-07-19 13:43:20 -04:00
committed by GitHub
parent 9d80c27382
commit 18c19ead76
24 changed files with 324 additions and 466 deletions

View File

@@ -98,7 +98,11 @@ async function nowDeploy(bodies, randomness, uploadNowJson) {
logWithinTest('state is READY, moving on');
break;
}
logWithinTest('state is ', readyState, 'retrying in 1 second');
if (i > 0 && i % 25 === 0) {
logWithinTest(
`State of https://${deploymentUrl} is ${readyState}, retry number ${i}`
);
}
await new Promise(r => setTimeout(r, 1000));
}