-
Notifications
You must be signed in to change notification settings - Fork 6
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
No dls bluesky #645
No dls bluesky #645
Conversation
7395e95
to
f8d8fef
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #645 +/- ##
==========================================
- Coverage 92.33% 92.28% -0.06%
==========================================
Files 35 35
Lines 1800 1801 +1
==========================================
Hits 1662 1662
- Misses 138 139 +1 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy for merge once linting passes
cd54faf
to
8e71662
Compare
75c446f
to
e305a25
Compare
@@ -204,8 +204,8 @@ def temp_yaml_config_file( | |||
"env": { | |||
"sources": [ | |||
{"kind": "dodal", "module": "dodal.adsim"}, | |||
{"kind": "planFunctions", "module": "dls_bluesky_core.plans"}, | |||
{"kind": "planFunctions", "module": "dls_bluesky_core.stubs"}, | |||
{"kind": "planFunctions", "module": "dodal.plans"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I probably missed this in the last PR, but what happens if I just want to import some of the dodal plans, not all of them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In theory, not just for dodal.plans but for any plans module, you maintain a structure such that x.y.z is the plans you want imported, and x.y.a is plans that you don't want imported.
This is also why dodal.plan_stubs.wrapped on the line below.
Until we can tackle #681
Fixes #643