Henry Harutyunyan

Results 5 issues of Henry Harutyunyan

Since the `Context` class is in the same file as the code that imports the `mutmut_config`, it cannot be used for the annotations. We are extensively using annotations in our...

Most often we run the `mutmut` on a custom path in the project. As far as I can see, at the moment the `mutmut_config.py` must be places inside the root...

For some reason, GH Actions are automatically disable when nothing changes for a while. This is hard to spot unless you manually check the Actions tab. It would have been...

Ussing uuid as a default value for a field results in the following migration: ```python class Student(peewee.Model): ... uuid = UUIDField(default=uuid.uuid4, unique=True) class Meta: table_name = "student" def forward(old_orm, new_orm):...

Renaming an attribute on the model results in dropping the column and creating a new one with empty values. ```diff class Student(BaseModel): id = AutoField(primary_key=True) - name = CharField(max_length=50) -...