dropseed

plain-test

@dropseed/plain-test
dropseed
652
13 forks
Updated 1/18/2026
View on GitHub

Runs pytest tests with Plain configured. Use for running tests, debugging failures, or verifying changes.

Installation

$skills install @dropseed/plain-test
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Repositorydropseed/plain
Pathplain-pytest/plain/pytest/skills/plain-test/SKILL.md
Branchmaster
Scoped Name@dropseed/plain-test

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: plain-test description: Runs pytest tests with Plain configured. Use for running tests, debugging failures, or verifying changes.

Running Tests

uv run plain test [pytest options]

Examples

  • uv run plain test - Run all tests
  • uv run plain test -k test_name - Filter by test name
  • uv run plain test --pdb - Drop into debugger on failure
  • uv run plain test -x - Stop on first failure
  • uv run plain test -v - Verbose output

Writing Tests

  • Use pytest fixtures and conventions
  • Place tests in tests/ directory
  • Use plain.test.Client for HTTP request testing

Getting Package Docs

Run uv run plain docs <package> --source for detailed API documentation.