mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-02-13 22:55:42 +01:00
Introduces Playwright testing agents (planner, generator, healer) powered by MCP to plan, generate, and heal end-to-end tests. Configures the MCP server and integrates agent workflows into OpenCode and GitHub chat modes to enable AI-assisted testing. Adds Playwright test dependency and updates lockfile; adjusts markdown lint ignores to reduce noise. Adds contributor guidance for Claude Code to streamline local development. Normalizes shell script shebangs to use /usr/bin/env bash for portability. Enables automated browser testing workflows and resilient test maintenance within AI-enabled tooling.
12 lines
277 B
Bash
Executable File
12 lines
277 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run linting, formatting and type checking
|
|
|
|
echo "Running Ruff linter..."
|
|
uv run -m ruff check dashboard_project
|
|
|
|
echo "Running Ruff formatter..."
|
|
uv run -m ruff format dashboard_project
|
|
|
|
echo "Running Black formatter..."
|
|
uv run -m black dashboard_project
|