MLOps Validation
SkillMonitoring & opsAdd the validation layers that gate a merge — ty typing, Ruff linting, pytest coverage, structured logging, and the trivy, pip-audit, and gitleaks scans. Use when hardening code quality or wiring the mise run check task.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the MLOps Validation skill
What this skill tells your AI
The instructions your AI receives, as published by mlops-courses/mlops-coding-skills in mlops-validation/SKILL.md and read by ahel’s review.
Goal
To ensure software quality, reliability, and security through automated validation layers. This skill enforces Strict Typing (ty), Unified Linting (ruff), Comprehensive Testing (pytest), Structured Logging, and Supply-Chain Scanning (pip-audit, gitleaks, trivy).
Prerequisites
- Language: Python 3.14
- Manager:
uv; Tasks:mise - Context: Ensuring code quality before merge/deploy.
Instructions
1. The Task Vocabulary
Every check below is a mise task, so the same command runs locally, in the git hook, and in CI. Never invoke the underlying tool by hand in a hook or a workflow — the task is the single definition.
| Task | Tool | What it proves |
|---|---|---|
check:format | dprint, validate-pyproject, ruff format --check, uv lock --check | Files and manifests are canonical and the lockfile is current. |
check:lint | ruff check | No lint violation, including the S (security) rules. |
check:types | ty check | Type annotations are consistent. |
check:vuln | pip-audit | No known CVE in the resolved Python dependencies. |
check:leaks | gitleaks | No secret in the staged change or the recent history. |
check:scan | trivy | No misconfiguration, leaked secret, or forbidden license in the tree. |
check:actions | actionlint, zizmor | Workflows are valid and not vulnerable. |
test | pytest | Behavior is covered and correct. |
mise run check runs the check:* tasks in parallel; mise run all chains format -> check -> test -> build and is the only gate anyone needs to remember.
2. Static Analysis (Typing & Linting)
Catch errors before they run.
- Typing:
- Tool:
ty(Astral type checker; pre-1.0, pin a compatible range such asty>=0.0.69,<0.1). The mandated checker — do not usemypy. - Rule: No
Any(unless absolutely necessary). Fully typed function signatures. - Pragmatism:
tydoes not yet model every dynamic library (MLflow, pandera, Pydantic). Silence the specific rule categories they trigger in[tool.ty.rules], with a comment saying why — never disable the checker wholesale. - DataFrames: Use
panderaschemas to validate DataFrame structures/types. - Classes: Use
pydanticfor data modeling and runtime validation.
- Tool:
- Linting & Formatting:
- Tool:
ruff0.16+ (replaces black, isort, pylint, flake8, bandit). - Rule: Zero tolerance for linter errors. Use
noqasparingly and with justification. - Config: Centralize in
pyproject.toml, with an explicit[tool.ruff.lint] selectlist. Ruff 0.16 expanded the default rule set from 59 to 413 rules, so a project that relies on the default set changes behavior on upgrade while an explicitselectlist does not. - Markdown: Ruff 0.16 also formats Python code blocks inside
.mdfiles. Expect a one-time reformat of your documentation on the first run, and commit it.
- Tool:
3. Testing Strategy
Verify behavior and prevent regressions.
-
Tool:
pytest(9.x). -
Structure: Mirror
src/intests/.src/pkg/mod.py -> tests/test_mod.py -
Fixtures: Use
tests/conftest.pyfor shared setup (mock data, temp paths). -
Coverage: Measure with
pytest-covand set--cov-fail-underto the level the suite actually reaches, so any drop is a visible regression rather than slack under a round number. -
Pattern: Use Given-When-Then in comments.
def test_pipeline_execution(input_data): # Given: Valid input data # When: The pipeline processes the data # Then: The output content matches expectations -
MLflow in tests: Point the tests at a SQLite tracking store, not the deprecated file store — but build it once. Creating a fresh MLflow SQLite database runs the full Alembic migration chain (measured at roughly 7 seconds per database), so a session-scoped fixture should migrate one template database and each test should
shutil.copyfileit into its owntmp_path(roughly 0.07 seconds). Migrating per test turned a 34-second suite into a 339-second one.
4. Structured Logging
Enable observability and debugging.
- Tool:
loguru, configured through a small logging service so sinks and levels stay configurable. The wider house standard for long-lived services isstructlog; both emit structured records, so choose one per project and stay with it — running both splits the log stream and doubles the configuration surface. - Format: Use structured logging (JSON) in production for queryability.
- Levels:
DEBUG: Low-level tracing (payloads, internal state).INFO: Key business events (Job started, Model saved).ERROR: Actionable failures (with stack traces).
- Context: Include context (Job ID, Model Version) in logs.
- Discipline: No bare
printin library code — Ruff'sT20rules enforce it.
5. Security
Protect the supply chain and runtime.
- Code Scanning: Enable Ruff
S(flake8-bandit) rules to detect unsafe patterns (e.g.,eval,yaml.load) — this replaces standalonebandit, and runs insidecheck:lint. - Dependencies:
check:vulnrunspip-audit --skip-editableagainst the resolved environment; Dependabot opens the update pull requests on a weekly schedule. - Secret Scanning:
check:leaksrunsgitleaks. Scan the staged change in the pre-commit hook (--staged) and the recent history in CI (--log-opts="--max-count=100"); a scheduled workflow rescans the full history weekly, because a secret committed and later removed is invisible to a shallow scan forever. - Filesystem Scanning:
check:scanrunstrivy --config trivy.yaml fs .— one pass covering vulnerabilities, misconfigurations (Dockerfile, IaC), secrets, and license compliance. Two details matter: pass--configexplicitly, or aTRIVY_CONFIGexported in a developer's shell silently overrides the committed policy; and use thefssubcommand, becausetrivy configonly runs the misconfiguration scanner and quietly skips the rest. - Workflow Scanning:
check:actionsrunsactionlint(syntax, shell) andzizmor(workflow security: injection, over-broad permissions, credential persistence). - Secrets: NEVER log secrets. Sanitize outputs.
Self-Correction Checklist
- Type Safety: Does
mise run check:typespass? - Lint Cleanliness: Does
mise run check:lintpass with an explicitselectlist? - Test Discovery: Does
pytestsuccessfully find modules insrc/? - Test Speed: Is the MLflow store built once and copied, not migrated per test?
- Log Format: Are production logs serializing to JSON, from one logging library?
- Security: Do
check:lint(RuffS),check:vuln,check:leaks,check:scan, andcheck:actionsall pass? - Gate: Does
mise run allpass end to end?
Signals
- GitHub stars
- 22
- Forks
- 4
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
mlops-validation- Source
- github.com/mlops-courses/mlops-coding-skills