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 026fadf commit 3275ebeCopy full SHA for 3275ebe
tests/run_code_style.sh
@@ -3,12 +3,12 @@
3
set -xeu
4
5
if [ $1 = "lint" ]; then
6
- flake8 ignite tests examples --config setup.cfg
+ uv run flake8 ignite tests examples --config setup.cfg
7
ufmt diff .
8
elif [ $1 = "fmt" ]; then
9
- ufmt format .
+ uv run ufmt format .
10
elif [ $1 = "mypy" ]; then
11
- mypy --config-file mypy.ini
+ uv run mypy --config-file mypy.ini
12
elif [ $1 = "install" ]; then
13
- pip install --upgrade flake8 "black==24.10.0" "usort==1.0.8.post1" "ufmt==2.7.3" "mypy"
+ uv pip install --upgrade flake8 "black==24.10.0" "usort==1.0.8.post1" "ufmt==2.7.3" "mypy"
14
fi
0 commit comments