We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f195a78 commit 937dab5Copy full SHA for 937dab5
scripts/smoke_all.sh
@@ -4,13 +4,13 @@ set -euo pipefail
4
echo "== Lint & format =="
5
poetry run ruff check . --fix
6
poetry run ruff format .
7
-poetry run black .
+poetry run python -m black .
8
9
echo "== Type check =="
10
-poetry run mypy .
+poetry run python -m mypy .
11
12
echo "== Tests =="
13
-poetry run pytest -q
+poetry run python -m pytest -q
14
15
echo "== Reglas: matriz de verificación =="
16
workdir="$(mktemp -d)"
0 commit comments