One of the tests in our application fails since I’ve done a sdk-update.
I have a mocked excel-sheel which I try to import in the test.
But the test fails on the import with a ValueError.
Can you give support in trying to solve this
One of the tests in our application fails since I’ve done a sdk-update.
I have a mocked excel-sheel which I try to import in the test.
But the test fails on the import with a ValueError.
Can you give support in trying to solve this
Hi Guido,
In general I’d recommend not having relative imports in your tests folder. Could you try it as an absolute import: from app.masterlists.excel_file import SpreadsheetTemplate
?
Ok, this solves it, thanks