flet-dev / run-unit-tests
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/run-unit-tests && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3306" && unzip -o skill.zip -d .claude/skills/run-unit-tests && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/run-unit-tests/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Use when asked to run unit tests.
0 views
0 installs
Skill Content
---
name: run-unit-tests
description: Use when asked to run unit tests.
---
This skill is used to run unit tests of the Python part of Flet framework.
## Instructions
Run the following command to run `flet` package unit tests:
```
uv run --group test pytest packages/flet/tests
```
The directory in that commend is relative to `{root}/sdk/python`.