Compare commits

..

2 Commits

Author SHA1 Message Date
1a93f6d9cb Remove env
All checks were successful
gl/check check status: success (1a93f6d9cb7e159833c5590d6d746ce1ff793620)
gl/gate gate status: success (1a93f6d9cb7e159833c5590d6d746ce1ff793620)
2024-11-29 13:47:09 +00:00
968799fd60 Switch Price Calculator to Public
Some checks are pending
gl/check check status: pending (968799fd60ab673966ee6780196e38c99dc150fb)
2024-11-29 13:45:26 +00:00
3 changed files with 1 additions and 14 deletions

View File

@ -44,7 +44,7 @@ commands =
{[testenv:json-{{ doc.type }}]commands} {[testenv:json-{{ doc.type }}]commands}
{%- endfor %} {%- endfor %}
[testenv:pdf-docs] [testenv:docs-pdf]
deps = deps =
{[testenv:docs]deps} {[testenv:docs]deps}
{[testenv:bindeps]deps} {[testenv:bindeps]deps}

View File

@ -4,13 +4,6 @@
default-branch: main default-branch: main
templates: templates:
- helpcenter-base-jobs - helpcenter-base-jobs
vars:
sphinx_pdf_files:
{%- for doc in docs %}
{%- if doc.pdf_enabled %}
- {{ service_type }}-{{ doc.type }}.pdf
{%- endif %}
{%- endfor %}
check: check:
jobs: jobs:
- noop - noop

View File

@ -299,12 +299,6 @@ def process_repositories(args, service):
if args.update_zuul: if args.update_zuul:
"""Update zuul.yaml""" """Update zuul.yaml"""
context = dict(docs=[])
for doc in service_docs:
if doc["type"] == "dev":
doc["type"] = "dev-guide"
context["docs"].append(doc)
context["service_type"] = service['service_type']
zuul_yaml_content = zuul_yaml_template.render(**context) zuul_yaml_content = zuul_yaml_template.render(**context)
zuul_yaml_path = pathlib.Path(copy_to, "zuul.yaml") zuul_yaml_path = pathlib.Path(copy_to, "zuul.yaml")