mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-26 10:41:14 +00:00
10 lines
687 B
INI
10 lines
687 B
INI
[pytest]
|
|
# Disable output capturing to avoid duplicate streaming + captured sections during test runs
|
|
addopts = --capture=no
|
|
# Exclude manual tests that require external setup (HTTP server, Playwright browsers, etc.).
|
|
# tests/evals runs via dev_scripts/run_copilot_evals.sh, which injects pydantic-evals and
|
|
# logfire via `uv run --with` so they stay out of the main lockfile.
|
|
# tests/sdk and eval are OSS-only; listed here because this file is the single source
|
|
# of truth for norecursedirs after it joins the sync manifest. Pytest silently ignores
|
|
# paths that don't exist, so they're harmless in cloud.
|
|
norecursedirs = tests/manual tests/evals scripts/cdp-download-poc tests/sdk eval
|