From f88b8410bf662590a8259b1b992b67dbcfb0cf10 Mon Sep 17 00:00:00 2001 From: Colin Goutte Date: Sat, 26 Aug 2023 23:20:18 +0200 Subject: [PATCH] Add short useful alias for refactoring --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b3ddaf..9a2e9c5 100644 --- a/Makefile +++ b/Makefile @@ -14,9 +14,13 @@ run_dev: git ls-files | entr -r pipenv run python dev.py tdd: - git ls-files | entr make test opt=$(opt) + git ls-files | entr make test opt='$(opt)' git ls-files | entr make functionnal_tests +refactor_tdd: + make tdd opt="--pdb --ff --lf --ff -x" + + watch_db: watch "sqlite3 sql_app.db 'select * from movies'"