This passes resources through to input and output context.
Details
Details
unit tests
Diff Detail
Diff Detail
- Repository
- R1 dagster
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
So if you aren't using any resources, you won't need to mock them, you can just leave them uninitialized. If you are using resources, since ScopedResources is just a namedtuple constructed from the passed in resource dict, you could mock out the resources by doing something like mock.MagicMock(resource1=..., resource2=...,etc)