# Running Tests

To run the unit tests in this package:

1. Install the package in editable mode with development and testing dependencies:
   ```bash
   pip install -e .[tests,benchmarks,viz]
   ```

2. Run the tests from the repository root directory:
   ```bash
   pytest
   ```

### Code Coverage

To measure code coverage, run:
```bash
pytest --cov
```
This requires an editable install so that pytest-cov measures coverage on the active working source files.
