File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ pushd "${REPO_ROOT}" 2>&1 > /dev/null
88echo " Building documentation..."
99mkdir -p build
1010cd docs
11- make html
11+ uv run --all-groups make html
1212
1313popd 2>&1 > /dev/null
Original file line number Diff line number Diff line change @@ -11,31 +11,31 @@ STATUS=0
1111set +e
1212
1313echo " Running flake8..."
14- flake8 src/python_training_project --format=pylint > build/flake8.txt
14+ uv run --all-groups flake8 src/python_training_project --format=pylint > build/flake8.txt
1515if [ $? -ne 0 ]; then
1616 STATUS=1
1717fi
1818
1919echo " Running mypy..."
20- mypy src/python_training_project > build/mypy.txt
20+ uv run --all-groups mypy src/python_training_project > build/mypy.txt
2121if [ $? -ne 0 ]; then
2222 STATUS=1
2323fi
2424
2525echo " Running pylint..."
26- pylint src/python_training_project --msg-template=" {path}:{line}: [{msg_id}, {obj}] {msg} ({symbol})" > build/pylint.txt
26+ uv run --all-groups pylint src/python_training_project --msg-template=" {path}:{line}: [{msg_id}, {obj}] {msg} ({symbol})" > build/pylint.txt
2727if [ $? -ne 0 ]; then
2828 STATUS=1
2929fi
3030
3131echo " Running ruff check..."
32- ruff check > build/ruff.txt
32+ uv run --all-groups ruff check > build/ruff.txt
3333if [ $? -ne 0 ]; then
3434 STATUS=1
3535fi
3636
3737echo " Running ruff format..."
38- ruff format --check
38+ uv run --all-groups ruff format --check
3939if [ $? -ne 0 ]; then
4040 STATUS=1
4141fi
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ pushd "${REPO_ROOT}" 2>&1 > /dev/null
88mkdir -p build
99
1010echo " Running tests..."
11- pytest
11+ uv run --all-groups pytest
1212
1313popd 2>&1 > /dev/null
You can’t perform that action at this time.
0 commit comments