Skip to content

Commit 8065f05

Browse files
jontsaiclaude
andcommitted
docs: update README_TESTS.md to highlight Makefile usage
Update test documentation to recommend make commands as the primary method for running tests, with manual pytest commands as a fallback. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 7a9790a commit 8065f05

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

README_TESTS.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
11
# Running Tests
22

3-
## Quick Start
3+
## Quick Start (Using Make)
44

5-
The easiest way to run the catalog extra fields tests:
5+
The easiest way to run tests:
6+
7+
```bash
8+
# First time setup - create virtual environment
9+
make venv
10+
source .venv/bin/activate
11+
12+
# Install dependencies
13+
make install
14+
15+
# Run all tests
16+
make test
17+
18+
# Run just the catalog vendor tests
19+
make test-vendor
20+
21+
# Run tests with coverage
22+
make test-cov
23+
```
24+
25+
## Manual Test Commands
26+
27+
If you prefer to run pytest directly:
628

729
```bash
830
# Activate virtual environment

0 commit comments

Comments
 (0)