We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cec121 commit 4d28845Copy full SHA for 4d28845
1 file changed
Makefile
@@ -49,9 +49,11 @@ quality: lint typecheck format ## Run all code quality checks
49
50
test: ## Run all tests (unit first, then integration with parallelism)
51
@$(PRINT) "$(YELLOW)Running tests/unit...$(RESET)"
52
- uv run pytest tests/unit
53
- @$(PRINT) "$(YELLOW)Running tests/integration with $(XDIST_WORKERS) workers...$(RESET)"
54
- uv run pytest -n 2 tests/integration
+ pytest tests/unit
+ @$(PRINT) "$(YELLOW)Running tests/integration with 2 workers...$(RESET)"
+ BALATROBOT_RENDER_ON_API=0 \
55
+ BALATROBOT_HEADLESS=1 \
56
+ pytest -n 2 tests/integration
57
58
all: lint format typecheck test ## Run all code quality checks and tests
59
@$(PRINT) "$(GREEN)✓ All checks completed$(RESET)"
0 commit comments