Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,21 @@ Here are some additional things to keep in mind during the process:

- **Test your changes.** Before you submit a pull request, make sure that your changes work as expected.
- **Be patient.** It may take some time for your pull request to be reviewed and merged.

## Testing

Run all tests:

```sh
bash scripts/test.sh
```

Or run backend and frontend tests separately:

```sh
# Backend
uv run pytest backend/tests/

# Frontend
cd frontend && npm test
```
25 changes: 0 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,28 +133,3 @@ The container is now running in the background. Open your web browser and naviga
### 4. Inspect your agents

- Try inputting a sample agent URL such as `https://sample-a2a-agent-908687846511.us-central1.run.app`

## Testing

### Run all tests

```sh
# Make the script executable (first time only)
chmod +x scripts/test.sh

# Run all tests
bash scripts/test.sh
```

### Run tests separately

**Backend tests:**
```sh
uv run pytest backend/tests/
```

**Frontend tests:**
```sh
cd frontend
npm test
```
Loading