Closed georgeamccarthy closed 3 years ago
Describe the bug MyIndexer tests are failing because a flow has not been opened.
To Reproduce Steps to reproduce the behavior:
make test
Expected behavior Pass tests
Additional context I think these tests run methods on MyIndexer() without instantiating an object. This means self.workspace is not set. Instead use:
with flow: flow.index(...)...
Fixed in #22
Describe the bug MyIndexer tests are failing because a flow has not been opened.
To Reproduce Steps to reproduce the behavior:
make test
Expected behavior Pass tests
Additional context I think these tests run methods on MyIndexer() without instantiating an object. This means self.workspace is not set. Instead use: