Open
Conversation
Member
|
Hello, Thanks for the feedback! That's indeed likely to be a bug. Would it be possible to have a minimal example of code where this breaks, to add to our test suite? NB: This is one of the reasons why I prefer to see an issue first, before jumping in the code — our issue templates make it easier for us to gather all details we need to move forward ;) |
Author
|
Hey, sorry for the late reply. You mean something like this? import factory
class Item:
def __init__(self, sku, price):
self.sku = sku
self.price = price
def item_factory(sku, price):
obj = model.Item(sku, price)
return obj
class ItemFactory(factory.Factory):
class Meta:
model = item_factory
sku = "foo"
price = "bar"
class SpecialItemFactory(ItemFactory):
sku = "special"
item = SpecialItemFactory() # TypeError: issubclass() arg 1 must be a classShould I add a test case to the test suite? BR |
Member
|
Yes please! That's exactly what I had in mind ;) |
6a0825f to
4712853
Compare
Author
|
Done @rbarrois |
Author
|
@rbarrois Could you please merge this when you have a chance? Thank you. |
Facilitates the use of a factory function, that may create several related objects at once.
4712853 to
01a864c
Compare
Author
|
Hi @rbarrois, let me know if there's anything left to do for me in order to get this merged 🙏 |
Author
|
Any news? @rbarrois |
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.
Hi,
in our project, we're using factories for our models:
Now, in our tests we want factory boy to call those factories instead of the model classes directly, which works perfectly except in this case:
When a factory inherits from another factory,
FactoryOptions._get_counter_referenceexpects the assigned model to be a class, becauseissubclassraises:We couldn't find a fix for this case so I've opened this PR. If my solution is wrong or if anything is missing in my commit, please don't hesitate to let me know.
BR