run_unit_tests

Installation
SKILL.md

Unit Testing Skill

This skill provides instructions on how to run and add unit tests in the doug-dashboard project.

Running Tests

To run all unit tests, execute the following command from the project root:

uv run python -m pytest src/tests

To run a specific test file:

uv run python -m pytest src/tests/path/to/test_file.py

To see detailed outputs (which tests passed/failed):

Installs
1
First Seen
Apr 2, 2026
run_unit_tests — douggkim/me-dashboard