Łukasz Skarżyński
Łukasz Skarżyński
@oaosman84 I have spotted the same error when using rest_framework's throttling and it fails, because of following line in `throtlling.py`: > timer = time.time https://github.com/encode/django-rest-framework/blob/8812394ed83d7cce0ed5b2c5fcf093269d364b9b/rest_framework/throttling.py#L63 There `timer` is set to...
However I am not sure why when running only a single test/test file `timer` is set to `fake_time` function, but when running a bunch of tests then `timer` is still...
That's strange, however, according to [`django` docs about `Migration.initial`](https://docs.djangoproject.com/en/3.1/topics/migrations/#django.db.migrations.Migration.initial), such migration can be valid initial migration: > Initial migrations are marked with an initial = True class attribute on the...
I was also thinking about adding this feature to [`django-migration-linter`](https://github.com/3YOURMIND/django-migration-linter), but after reading its short description in `README.md`: > Detect backward incompatible migrations for your Django project. It will save...
hello @denisSurkov :wave: I think it's still relevant, however, we haven't got time to work on this issue, so any help is really appreciated. To be honest, I haven't checked...
hi :wave: Thanks for really well-prepared issue! It seems like we should call it, because it's also used in [`migrate` command](https://github.com/django/django/blob/ac90529cc58507d9a07610809a795ec5fc3cbf8c/django/core/management/commands/migrate.py#L358).
hi :wave: thank you for finding time to report this issue! I am running `django-test-migrations` on squashed migrations in multiple projects and it works fine. I have tried to reproduce...
It's useful, but for some reason test from `test_bad.py` from this ZIP file is always passing. I just extracted a new migration `0006` for the following model: ```python class ModelWithItem(models.Model):...
It's really hard to properly handle `Maybe` (and also `Trait` because under the hood it uses `as_declarations` to override affected fields with `Maybe` - [reference](https://github.com/FactoryBoy/factory_boy/blob/master/factory/declarations.py#L559)). To properly generate fixtures for...
I can take this issue as well as https://github.com/pytest-dev/pytest-factoryboy/issues/65, because it affected me several times. Could someone give me some directions firstly? I am still looking for the clearest solution...