Skip to content

Commit 15f082b

Browse files
committed
chore: remove coverage and test-verbose targets
1 parent b3a729b commit 15f082b

File tree

3 files changed

+1
-15
lines changed

3 files changed

+1
-15
lines changed

CLAUDE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ make quality # Run all quality checks
3939
make test # Run tests with single instance (auto-starts if needed)
4040
make test-parallel # Run tests on 4 instances (auto-starts if needed)
4141
make test-teardown # Kill all Balatro instances
42-
make test-verbose # Run tests with verbose output
43-
make coverage # Generate coverage reports
4442
```
4543

4644
**Testing Features:**

Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DEFAULT_GOAL := help
2-
.PHONY: help install install-dev lint lint-fix format format-md typecheck quality test test-parallel test-teardown test-verbose coverage docs-serve docs-build docs-clean build clean all dev
2+
.PHONY: help install install-dev lint lint-fix format format-md typecheck quality test test-parallel test-teardown docs-serve docs-build docs-clean build clean all dev
33

44
# Colors for output
55
YELLOW := \033[33m
@@ -86,16 +86,6 @@ test-teardown: ## Kill all Balatro instances
8686
$(BALATRO_SCRIPT) --kill
8787
@echo "$(GREEN) All instances stopped$(RESET)"
8888

89-
test-verbose: ## Run tests with verbose output
90-
@echo "$(YELLOW)Running tests with verbose output...$(RESET)"
91-
$(PYTEST) -vx
92-
93-
coverage: ## Generate test coverage reports
94-
@echo "$(YELLOW)Generating coverage reports...$(RESET)"
95-
$(PYTEST) --cov=src/balatrobot --cov-report=term-missing --cov-report=html --cov-report=xml
96-
@echo "$(GREEN) Coverage reports generated$(RESET)"
97-
@echo "HTML report: htmlcov/index.html"
98-
9989
# Documentation targets
10090
docs-serve: ## Serve documentation locally
10191
@echo "$(YELLOW)Starting documentation server...$(RESET)"

docs/contributing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,6 @@ make dev # Quick development check (format + lint + typecheck, no tes
144144
make test # Run tests with single instance (auto-starts if needed)
145145
make test-parallel # Run tests on 4 instances (auto-starts if needed)
146146
make test-teardown # Kill all Balatro instances
147-
make test-verbose # Run tests with verbose output
148-
make coverage # Generate test coverage reports
149147
150148
# Complete workflow including tests
151149
make all # Run format + lint + typecheck + test

0 commit comments

Comments
 (0)