Steve Lacey
Steve Lacey
I don’t have anything irregular, we’re talking totally normal Django here I am just trying to write faster tests that don’t touch the database when they don’t need to In...
@olegpidsadnyi ☝️
I did a lot more work on top of pytest-factoryboy since I suggested this - but I still don’t have an elegant solution to this I think a great implementation...
Here's what I expected it to be: ```py class UserFactory(DjangoModelFactory): class Params: my_trait = factory.Trait( has_done_thing=True, something_else=1, # ... ) @pytest.mark.parametrize("user__my_trait", [True]) @pytest.mark.parametrize("user__something_else", [2]) ``` Traits are primarily a shortcut...
+1 really annoys me that so few packages support this, and it looks like a relatively easy win in this case.
Obviously, new nodes could be spun up, that doesn't mean that modules shouldn't cater for uninstallation - I am hardly going to reprovision all of my nodes just because I...
@chibisov I'll invest the time fixing the rest of the implementation if you give me some feedback as to whether this is something you'd ever consider merging
I am currently toying with patching a custom `render_collection` method onto `Endpoint` to achieve the functionality I want, would be good to get rid of this if there's a way:...
Yeah it’s set to json On Wed, 8 Nov 2017 at 16:20, Darren Cheng wrote: > @stevelacey - can you check what your > adapter is set to? The default...
@kylef I don't know if hooks in the middleware are /that/ necessary given you can already swap it out and adjust what happens before/after the existing behaviour (I do this)...