Mischa Spiegelmock
Mischa Spiegelmock
I'm doing something like this: ```python class BaseFactory(factory.alchemy.SQLAlchemyModelFactory): class Meta: sqlalchemy_session = scoped_session( lambda: current_app.extensions["sqlalchemy"].db.session ) ``` Which works... almost... The first time you create() a factory object it works...
Check out https://github.com/pytest-dev/pytest-factoryboy/issues/11#issuecomment-569696976
Would be nice!
I'm fine with the behavior I just want to shut it up.
This is what I'm doing: ``` getEmailIdForActionEvent(openItem, element, event) { // FIXME: is there a better way to get this besides walking the DOM? maybe hooking gmail.js compose event? //...
I added some debugging and found that it is erroring on this:
I am able to account for deleted items in a thread with this code: ``` const openItem = $(newElement) .closest('.h7[role="listitem"]') // siblings no height = deleted thread items (not present...
I have exactly this ``` pythonRequirements: dockerizePip: false slim: true slimPatterns: - botocore/data/ec2 - botocore/data/cloudfront - botocore/data/rds - botocore/data/iam - botocore/data/s3 ``` but I still see all of them except...
Been seeing this too
I really would like to be able to use `Partial` for allowing users to customize CDK resources generated internally in my construct https://github.com/jetbridge/cdk-nextjs I can't even use `Pick`, e.g.: ```ts...