Alexander Polishchuk
Alexander Polishchuk
I faced the same issue. Are there any updates?
@grigi I faced the same issue. I'm using `pytest` with `tortoise` pretty intensely and my test uses the transactions. So, I saw `tortoise.contrib.test` helpers and found [TruncationTestCase](https://github.com/tortoise/tortoise-orm/blob/8b81b3dcf71f3cce19f2687559e46d3c22677f34/tortoise/contrib/test/__init__.py#L334) that should resolve...
@lntuition Oh. I fix it as well, but the issue still exists. You can try following code: ```python class SomeModel(models.Model): id = fields.IntField(pk=True) # pylint: disable=invalid-name field = fields.IntField() async...