From e0faf20a565c3284cfb3c6aa821d305d681acbe8 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Wed, 30 Jul 2025 11:31:34 -0700 Subject: [PATCH] feat: Remove obsolete CSV migration target from Makefile --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index 36bdfdc..9a3d832 100644 --- a/Makefile +++ b/Makefile @@ -133,14 +133,9 @@ test-edit-functionality: ## Test the enhanced edit functionality test-edit-window: $(VENV_ACTIVATE) ## Test edit window functionality (save and delete) @echo "Running edit window functionality test..." $(PYTHON) scripts/test_edit_window_functionality.py - test-dose-editing: $(VENV_ACTIVATE) ## Test dose editing functionality in edit window @echo "Running dose editing functionality test..." $(PYTHON) scripts/test_dose_editing_functionality.py - -migrate-csv: $(VENV_ACTIVATE) ## Migrate CSV to new format with dose tracking - @echo "Migrating CSV to new format..." - .venv/bin/python migrate_csv.py lint: ## Run the linter @echo "Running the linter..." docker-compose exec ${TARGET} pipenv run pre-commit run --all-files