Ofer Nave

Results 47 comments of Ofer Nave

Was wondering the same thing as @schmunk42, so thanks, @ccoenen.

Curl::Multi.post(http_requests, {}, { pipeline: true }) do |http_response| http_responses

I'm in the same boat. I would like to write some custom assertions for convenience and add them to `t` in my project. The [docs](https://github.com/avajs/ava#custom-assertions) say "you can use custom...

So... what's the easiest way to extend `t` with custom assertions? :)

So how do you recommend approaching this particular use case? I need to compare two floats with some margin of error. Because there's no support built-in, and no documented way...

It's still in the documentation. https://docs.graphene-python.org/projects/django/en/stable/mutations/#djangomodelformmutation

Just wanted to add my support - now that Django has an @admin.display() decorator for "admin actions", it sure would be nice if django-object-actions offered a similar decorator for object...

I don't understand the failure.

I have the same issue with models.UUIDField in Django 3.0. For some reason it doesn't complain if the `id` field is a UUIDField, but if I add any others, it...

Just searched the code. Seems UUIDField is part of a list of supported types in the Mongo backend: https://github.com/klen/mixer/blob/develop/mixer/backend/mongoengine.py#L119 But not the Django backend: https://github.com/klen/mixer/blob/develop/mixer/backend/django.py#L82 Can this be easily fixed?...