-
Notifications
You must be signed in to change notification settings - Fork 161
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
Make parent formid a part of autogenerated oid #520
base: main
Are you sure you want to change the base?
Conversation
6863f9d
to
f364816
Compare
@ezag lint is failing. Would you please run I'll do a detailed review once GitHub Actions passes. |
@ezag additionally the functional tests must pass. Please let me know if you need assistance with that part. It can be tricky because deformdemo is in a separate repository. |
@stevepiercy thanks, looks like there's plenty of instructions on setting up & running the functional tests - I'm going to get to it in a while |
f364816
to
3cc3908
Compare
Would you also please run black over the code base with |
3cc3908
to
f0e16dd
Compare
f0e16dd
to
065df8c
Compare
@stevepiercy added meaningful test name and applied tox format; also updated related functional test Pylons/deformdemo#120 |
@ezag it looks like GitHub Actions deprecated pypy3 on macos-latest. Would you please rebase your branch on |
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 have a couple of questions, now that I took a little more time to look at this. Would you please respond to them? Thank you!
@@ -139,6 +139,7 @@ def __init__( | |||
# Use kwargs to pass flags to descendant fields; saves cluttering | |||
# the constructor | |||
kw["focus"] = self.focus | |||
self.formid = formid |
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.
Is there a reason you moved this line? I don't understand why it was moved.
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.
The formid
should be set prior to children initialization, since Field.__init__
does rely on it.
592e72f
to
c896125
Compare
@stevepiercy rebased on up-to-date main |
Better late then never :) #394