File tree Expand file tree Collapse file tree
packages/http-client-python/generator/pygen/codegen/templates Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ By default the tool writes a **clickable HTML report** (`emitter-diff.html`) int
5757prints a ` file:// ` link to it. Use ` --html ` to write to a specific file.
5858
5959- ` --name <pattern> ` : Filter which specs/packages are generated.
60+ - ` --ci ` : Disable baseline-output cache (intended for CI workflows).
6061- ` --html <file> ` : Write the rendered HTML report to this path (default: ` <work-dir>/emitter-diff.html ` ).
6162- ` --generated-code-path <path> ` : Override the adapter generated-code subpath under each side output root.
6263 For Python, generated files land under ` <side>/<path>/tests/generated/... ` .
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ function repoPathKey(repo: string): string {
303303 return repo . replace ( / [ ^ a - z 0 - 9 . _ - ] / gi, "-" ) . toLowerCase ( ) ;
304304}
305305
306- /** Create a fresh scratch dir under the OS temp dir when `--work-dir` is omitted . */
306+ /** Create a fresh scratch dir under the OS temp dir for each run . */
307307export function defaultWorkDir ( ) : string {
308308 return mkdtempSync ( join ( tmpdir ( ) , "emitter-diff-" ) ) ;
309309}
Original file line number Diff line number Diff line change 11{% import 'keywords.jinja2' as keywords %}
22# coding=utf-8
3- # DEMO: emitter-diff sample change — revert before merge.
43{% if code_model .license_header %}
54{{ code_model.license_header }}
65{% endif %}
You can’t perform that action at this time.
0 commit comments