-
Notifications
You must be signed in to change notification settings - Fork 1
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
Tickets/preops 3763 #35
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #35 +/- ##
==========================================
+ Coverage 12.04% 12.41% +0.36%
==========================================
Files 39 39
Lines 3071 3078 +7
Branches 467 466 -1
==========================================
+ Hits 370 382 +12
+ Misses 2692 2687 -5
Partials 9 9
☔ 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.
Mostly, this looks good! I just have a few minor stylistic requests.
First, there are some public functions that do not have docstrings. In general, a function should either have a docstring, or marked as private (have a preceeding underscore), or both.
Second, some of the docstrings that are there have their summary sentences on a different line from the opening tripple quote. This messes up some of the doc extraction tools. See https://developer.lsst.io/python/numpydoc.html .
Finally, there are still a few extraneous "print" statements in there, obviously included for debugging. If they should be there long term, they should probably be logging messages instead.
In each of these cases, I just marked one example with a comment, but there are multiple instances of each.
Can you do a rebase onto main and resolve the resultant merge conflicts? |
Comments addressed. It should be up to date now. |
I'm not sure what the ticks and crosses next to commits mean. That's what I did to rebase the branch
|
You made one mistake in:
It should be:
That The |
5d87f97
to
24e0e04
Compare
Thank you. I've done that now but I'm not happy with the commit history (repeating my commits multiple times). Is there a way to clean it? |
You can do |
24e0e04
to
fca5856
Compare
That worked! Looks much better. Thank you so much :) |
Tests were failing because for some reason some bokeh models are owned by multiple documents. This happens when scheduler dashboard and prenight dashboard both run in tests. Resetting bokeh output before and after tests fixes the issue