Yohann Rebattu

Results 9 comments of Yohann Rebattu

You are right, it was a mistake with my copy/pasting to make the minamal exemple, but even with the right fixture the second test don't pass (i edited my exemple...

Same error here It works with html because there is no need to convert the mermaid code which is only copied to the final html document and interpreted with js...

unfortunatly i did not find a solution, i tryed for a week, then posted this message as a bottle in the sea… The workaround i use for now is to...

i finaly managed to make it work ! so there was 2 main caveats: - first : it is really important to configure mocked-sessions to the sessions your code uses...

I used the suggested code in a fixture, but after 20 tests, an error is thrown: ``` sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) connection to server at "localhost" (127.0.0.1), port 5432 failed: FATAL: les...

should fix : https://github.com/jowilf/sqlalchemy-file/issues/150

@kalekseev , we can use ``` [mypy-factory] implicit_reexport = True ``` waiting for #1114 Dose `Factory.create()` instead of `Factory()` is the recommended way to avoid typing error (we have a...

@kalekseev , thanks, Is there a way to provide the same typing for `SubFactory` (and factory.Sequence) as in this exemple: ``` class DepartmentFactory(BaseFactory): class Meta: model = Department id =...

I totally agree at runtime, but when doing static type checking, mypy find this error: ```error: Call to untyped function "SubFactory" in typed context [no-untyped-call]``` edit: I was not able...