Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions examples/run-samples.py → examples/run-examples.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env python3
"""Run example samples and report results.
"""Run examples and report results.

Usage (from repo root):
uv run examples/run-samples.py # text-only samples
uv run examples/run-samples.py --image # also run image samples
uv run examples/run-samples.py --video # also run video samples
uv run examples/run-samples.py --e2e # also run e2e test scripts
uv run examples/run-samples.py --all # run everything
uv run examples/run-samples.py --parallel # run in parallel
uv run examples/run-examples.py # text-only samples
uv run examples/run-examples.py --image # also run image samples
uv run examples/run-examples.py --video # also run video samples
uv run examples/run-examples.py --e2e # also run e2e test scripts
uv run examples/run-examples.py --all # run everything
uv run examples/run-examples.py --parallel # run in parallel
"""

import argparse
Expand Down
Loading