You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/docs/guides/pytest_plugin/configuration.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Prefer real environment variables (shell exports, CI secrets) for anything you
67
67
can't keep in a local file.
68
68
69
69
!!! warning "FedRAMP / shared environments"
70
-
Pass `--sift-log-file=false` (or set the ini key to `"false"`) to skip the
70
+
Pass `--no-sift-log-file` (or set `sift_log_file = false`) to skip the
71
71
temp file + worker pipeline. Create/update calls then run inline against the
72
72
API instead of being deferred through a subprocess.
73
73
@@ -146,8 +146,9 @@ suggestion, so typos like `SIFT_REPORT_SERIALNUM` surface immediately.
146
146
147
147
| Setting | CLI flag | Ini (`[tool.pytest.ini_options]`) |
148
148
|---|---|---|
149
-
| Path to the JSONL log of create/update calls (path \| true \| false \| none). | `--sift-log-file` | `sift_log_file` |
150
-
| DEBUG-level audit trace of plugin behavior (path \| true \| false). On by default to a temp file, with warnings echoed to stdout; set a path to pin the file, or false to disable. | `--sift-audit-log` | `sift_audit_log` |
149
+
| Directory for this run's artifacts (JSONL log, audit trace). Each run gets its own random subfolder. Defaults to a temp directory. |`--sift-output-dir`|`sift_output_dir`|
150
+
| Write the JSONL log of create/update calls. On by default; --no-sift-log-file disables it (incompatible with --sift-offline). |`--no-sift-log-file`|`sift_log_file`|
151
+
| Write the DEBUG audit trace of plugin behavior, with warnings echoed to stdout. On by default; --no-sift-audit-log disables it. |`--no-sift-audit-log`|`sift_audit_log`|
151
152
| Capture git repo/branch/commit on the report. |`--no-sift-git-metadata`|`sift_git_metadata`|
152
153
| Skip the session-start ping; route create/update through the JSONL log. |`--sift-offline`|`sift_offline`|
153
154
| Disable Sift entirely (no API calls, no log file). Supersedes --sift-offline. |`--sift-disabled`|`sift_disabled`|
0 commit comments