Skip to content

Add on-call schedules endpoint #2783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-10 18:01:22.406444",
"spec_repo_commit": "c0a45137"
"regenerated": "2025-04-11 12:59:00.055283",
"spec_repo_commit": "7307da21"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-10 18:01:22.422014",
"spec_repo_commit": "c0a45137"
"regenerated": "2025-04-11 12:59:00.071998",
"spec_repo_commit": "7307da21"
}
}
}
3 changes: 2 additions & 1 deletion .generator/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ def operation_specs(specs):
def api(context, api_version, specs, name):
"""Return an API instance."""
assert name in {tag["name"].replace(" ", "") for tag in specs[api_version]["tags"]}
context["api_instance"] = {"name": name}
api_name = name.replace("-", "")
context["api_instance"] = {"name": api_name}


@given(parsers.parse('operation "{name}" enabled'))
Expand Down
Loading