From 1162034875347b7c7814ca596a9273f3024cd668 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Mon, 3 Mar 2025 17:14:36 -0500 Subject: [PATCH] @echo "Deleting tests from source code for production..." rm -rf make_post_sell/tests modified: Makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ed7f73f..709ac04 100644 --- a/Makefile +++ b/Makefile @@ -65,6 +65,8 @@ install-source-dev-and-test: venv # Install from source for production (non‑editable). install-source-prod: venv + @echo "Deleting tests from source code for production..." + rm -rf make_post_sell/tests @echo "Installing make_post_sell from source for production (non‑editable)..." $(PIP) install . $(PIP) install --upgrade -r requirements-prod.txt