Commit ·
2c0bacb
1
Parent(s): 16589b1
fix: Correct import order and add CI debugging info
Browse files- Fix import order in audio_generator.py per ruff isort requirements
- Add debugging info to CI lint command for troubleshooting
- Remove extra blank line between voicevox_core and yomitalk imports
Makefile
CHANGED
|
@@ -154,6 +154,9 @@ pre-commit-run: setup-lint
|
|
| 154 |
# Run linting checks for CI (check only, no modifications)
|
| 155 |
lint-ci: setup-lint
|
| 156 |
@echo "Running linting checks for CI (check only)..."
|
|
|
|
|
|
|
|
|
|
| 157 |
$(VENV_DIR)/bin/ruff check $(SRC_DIRS)
|
| 158 |
$(VENV_DIR)/bin/ruff format --check $(SRC_DIRS)
|
| 159 |
@echo "Linting checks completed"
|
|
|
|
| 154 |
# Run linting checks for CI (check only, no modifications)
|
| 155 |
lint-ci: setup-lint
|
| 156 |
@echo "Running linting checks for CI (check only)..."
|
| 157 |
+
@echo "Ruff version: $$($(VENV_DIR)/bin/ruff --version)"
|
| 158 |
+
@echo "Current directory: $$(pwd)"
|
| 159 |
+
@echo "Python version: $$($(VENV_DIR)/bin/python --version)"
|
| 160 |
$(VENV_DIR)/bin/ruff check $(SRC_DIRS)
|
| 161 |
$(VENV_DIR)/bin/ruff format --check $(SRC_DIRS)
|
| 162 |
@echo "Linting checks completed"
|