Skip to content

Commit 937dab5

Browse files
committed
chore(ci): use python -m for black/mypy/pytest in smoke scripts
1 parent f195a78 commit 937dab5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/smoke_all.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ set -euo pipefail
44
echo "== Lint & format =="
55
poetry run ruff check . --fix
66
poetry run ruff format .
7-
poetry run black .
7+
poetry run python -m black .
88

99
echo "== Type check =="
10-
poetry run mypy .
10+
poetry run python -m mypy .
1111

1212
echo "== Tests =="
13-
poetry run pytest -q
13+
poetry run python -m pytest -q
1414

1515
echo "== Reglas: matriz de verificación =="
1616
workdir="$(mktemp -d)"

0 commit comments

Comments
 (0)