FAST plugin hooks - #1931
Draft
be-smith wants to merge 31 commits into
Draft
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## ml-evs/bump-pydantic-final-final #1931 +/- ##
====================================================================
- Coverage 80.02% 79.95% -0.08%
====================================================================
Files 83 83
Lines 7626 7663 +37
====================================================================
+ Hits 6103 6127 +24
- Misses 1523 1536 +13
🚀 New features to boost your workflow:
|
datalab
|
||||||||||||||||||||||||||||||||||
| Project |
datalab
|
| Branch Review |
bes/FAST_plugin_pydanticv2
|
| Run status |
|
| Run duration | 22m 12s |
| Commit |
|
| Committer | Ben Smith |
| View all properties for this run ↗︎ | |
| Test results | |
|---|---|
|
|
1
|
|
|
0
|
|
|
0
|
|
|
0
|
|
|
547
|
| View all changes introduced in this branch ↗︎ | |
Tests for review

cypress/e2e/batchSampleFeature.cy.js • 1 failed test • End-to-end tests (chrome)
| Test | Artifacts | |
|---|---|---|
| Batch sample creation > plays with the number of rows |
Test Replay
Screenshots
|
|
Move back to descriptions in field docstrings and configure this with customised BaseModel More model updates for pydantic v2
Rework ITEMS_FTS_FIELDS lookup
Fixes for routes Chatblock patch; set default values in block More updates for blocks
More updates for models Fixes for models Simplify item versioning model Remove unecessary by_alias=True
…okups to mongo module
…rve out for plugins
…d versions (pydantic 1 to 2 change)
Pydantic v2's model_json_schema() uses "$defs" instead of "definitions" (Pydantic v1). Update the four item-information components to use the correct key so possibleItemStatuses is no longer undefined.
ml-evs
force-pushed
the
ml-evs/bump-pydantic-final-final
branch
from
August 9, 2026 13:10
0969519 to
6d809c7
Compare
ml-evs
force-pushed
the
bes/FAST_plugin_pydanticv2
branch
from
August 9, 2026 13:17
6c72f11 to
fd3bdc3
Compare
ml-evs
force-pushed
the
ml-evs/bump-pydantic-final-final
branch
2 times, most recently
from
August 13, 2026 23:12
f112cf0 to
765d3b1
Compare
ml-evs
force-pushed
the
ml-evs/bump-pydantic-final-final
branch
2 times, most recently
from
August 20, 2026 16:17
623e1da to
c075b7a
Compare
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.
Add post-plot hooks to CycleBlock for plugin-driven metrics
Plugins can register callables on CycleBlock.post_plot_hooks. These are called after plot_cycle renders the plot. Currently takes in the an unfiltered reparse of the source file, and the cycle summary DataFrame. This is because we filter out unknown columns etc earlier in the plot_cycle so we would lose additional columns (e.g R Ohm). The reparse is only performed when a hook is registered.
Likely this structure will change with the block redesign. Reparsing seems unnecessary and these hooks could run as a separate async process.