You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 8, 2021. It is now read-only.
Currently if we want to override a field for a fixture,
we have to use install_fixture like so
self.install_fixture('foo', overrides={'a': 'baz'})
self.install_fixtures((
'foo',
'bar',
'baz'
))
however, the ability to do this inline would be nice:
self.install_fixtures((
'foo',
'bar',
'baz',
('foo', overrides={'a': 'baz'})
))