ci: add mlops-sklearn-starter profile and github-setup support (fixes #92) - #179
Closed
emberb170d wants to merge 5 commits into
Closed
ci: add mlops-sklearn-starter profile and github-setup support (fixes #92)#179emberb170d wants to merge 5 commits into
emberb170d wants to merge 5 commits into
Conversation
…-App#119 Added comprehensive authoring rules, checklist, and rationale guidance for declarations in templates.json. This addresses issue Create-Python-App#119: docs: document incompatibleWith authoring rules in AUTHORING.md Changes: - Added 5 authoring rules for incompatibleWith declarations - Added checklist for new incompatibleWith entries - Referenced templates.schema.json validation - Defined when to use vs skip incompatibility
…reate-Python-App#92) - Create ci/profiles/mlops-sklearn-default.json for AI/ML CI trust requirements (issue Create-Python-App#92): bare L1 job + L2 pytest on generated project - Add mlops-sklearn to github-setup extension types so CI profiles and L2 extension jobs cover the sklearn MLOps template - Both templates.json and ci/profiles validated against registry
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
… fastapi-opentelemetry - Add mlflow-tracing vs opentelemetry incompatibility to matrix in docs/AI_ML_AUTHORING.md - Declare incompatibleWith on both extensions in templates.json - Neither exists yet; document the rule for when they ship Co-authored-by: openhands <openhands@all-hands.dev>
Member
|
Thanks for the follow-up! The CI profile work itself looks on track, but the branch currently conflicts with Please rebase onto the latest |
9 tasks
ulises-jeremias
added a commit
that referenced
this pull request
Aug 23, 2026
- Add fastapi-observability (github-setup + fastapi-cors + fastapi-sqlalchemy + fastapi-opentelemetry + fastapi-rag-pgvector) covering 4 orphans with distinct categories (ci/security/database/observability/ai-ml) - Add fastapi-data (pre-commit + fastapi-redis + fastapi-rate-limit + fastapi-mlflow-tracing) covering remaining 4 fastapi orphans (ci/database/security/observability) — respects category uniqueness (one per category) - Add django-full (github-setup + development-container + django-docker + postgres + django-spectacular) covering django-spectacular orphan - Add mlops-sklearn-default (mlops-sklearn-starter + github-setup) as per PR #179 — cherry-picked profile and github-setup type extension for mlops-sklearn; pre-commit orphan is covered via fastapi-data (cannot co-locate ci category with github-setup in same profile) - Update templates.json: add mlops-sklearn to github-setup type array for L2/L3 coverage - All 18 extensions now covered by at least one L3 profile (0 orphans); validated via generate-matrix.py --layer validate-profiles and validate-registry.py Fixes orphan coverage noted in W4-1 and §3 (9/18 extensions orphan: cors, redis, sqlalchemy, otel, rate-limit, mlflow-tracing, rag-pgvector, django-spectacular, pre-commit) Co-authored-by: ulises-jeremias <ulises.jeremias@example.com>
Member
|
Superseded by #187 which landed same profile via W4, closing. Thanks @emberb170d! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Issue #92 requests AI/ML CI trust requirements: bare L1 jobs for every new AI/ML template type, L2 pytest on generated projects, and documentation in each AI/ML profile under `ci/profiles/`.
The `mlops-sklearn-starter` template exists in the registry but had no CI profile, and the `github-setup` extension didn't declare `mlops-sklearn` as a supported type — so L2 extension jobs and L3 profiles never exercised it.
Solution
and L2 extension jobs cover the sklearn MLOps template.
This fulfills the acceptance criteria:
User Impact
MLOps sklearn starter templates now get first-class CI coverage: scaffold integrity, lint, type-check, and pytest in generated projects.
Fixes #92