You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
✨ feat: enhance Makefile with parameterized testing and add dev server script
- Update Makefile to include new targets for unit and integration testing with specific app names
- Introduce a dev server script for launching LangGraph applications with argument support
- Improve help output in Makefile to document new parameterized targets
This commit enhances the development workflow by allowing targeted testing and streamlined application development.
Copy file name to clipboardExpand all lines: Makefile
+70-2Lines changed: 70 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
.PHONY: all format lint test test_integration lint_libs lint_apps format_libs format_apps test_libs test_apps test_integration_libs test_integration_apps help
1
+
.PHONY: all format lint test test_integration lint_libs lint_apps format_libs format_apps test_libs test_apps test_integration_libs test_integration_apps unit integration dev help
2
2
3
3
# Default target executed when no arguments are given to make.
4
4
all: help
@@ -102,6 +102,69 @@ test_integration_libs:
102
102
test_integration_apps:
103
103
$(call run_integration_tests,apps)
104
104
105
+
######################
106
+
# PARAMETERIZED TESTING
107
+
######################
108
+
109
+
# Parameterized test targets that accept app names
110
+
# Usage: make unit agent1, make integration agent1
0 commit comments