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
The test_etl.py (as of writing) uses a context manager to patch etl.vt.CCARSJobsPostings.write_url but since it's a mockpatch manager, it does not call the method undo_mock_write_url, which removes the copied test file, to avoid side effects. A new patch manager should be made (or extended) to also call self.undo_mock_write_url
The text was updated successfully, but these errors were encountered:
The test_etl.py (as of writing) uses a context manager to patch
etl.vt.CCARSJobsPostings.write_url
but since it's amock
patch
manager, it does not call the methodundo_mock_write_url
, which removes the copied test file, to avoid side effects. A new patch manager should be made (or extended) to also callself.undo_mock_write_url
The text was updated successfully, but these errors were encountered: