Skip to content

Commit 3275ebe

Browse files
committed
test
1 parent 026fadf commit 3275ebe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/run_code_style.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
set -xeu
44

55
if [ $1 = "lint" ]; then
6-
flake8 ignite tests examples --config setup.cfg
6+
uv run flake8 ignite tests examples --config setup.cfg
77
ufmt diff .
88
elif [ $1 = "fmt" ]; then
9-
ufmt format .
9+
uv run ufmt format .
1010
elif [ $1 = "mypy" ]; then
11-
mypy --config-file mypy.ini
11+
uv run mypy --config-file mypy.ini
1212
elif [ $1 = "install" ]; then
13-
pip install --upgrade flake8 "black==24.10.0" "usort==1.0.8.post1" "ufmt==2.7.3" "mypy"
13+
uv pip install --upgrade flake8 "black==24.10.0" "usort==1.0.8.post1" "ufmt==2.7.3" "mypy"
1414
fi

0 commit comments

Comments
 (0)