Skip to content

Commit 7233931

Browse files
committed
chore: upgrade poetry
1 parent cfadf37 commit 7233931

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

scripts/cts/runCts.ts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,10 @@ async function runCtsOne(language: Language, suites: Record<CTSType, boolean>):
9292
);
9393
break;
9494
case 'python':
95-
await run(
96-
`poetry lock --no-update && poetry install --sync && poetry run pytest -vv ${filter((f) => `tests/${f}`)}`,
97-
{
98-
cwd,
99-
language,
100-
},
101-
);
95+
await run(`poetry lock && poetry install --sync && poetry run pytest -vv ${filter((f) => `tests/${f}`)}`, {
96+
cwd,
97+
language,
98+
});
10299
break;
103100
case 'ruby':
104101
await run(`bundle install && bundle exec rake ${filter((f) => `test:${f}`)} --trace`, {

scripts/playground.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function playground({ language, client }: { language: AllLanguage;
3434
await run(`php ${client}.php`, { cwd: 'playground/php/src', language });
3535
break;
3636
case 'python':
37-
await run(`poetry lock --no-update && poetry install --sync && poetry run ${client}`, {
37+
await run(`poetry lock && poetry install --sync && poetry run ${client}`, {
3838
cwd: 'playground/python',
3939
language,
4040
});

0 commit comments

Comments
 (0)