The old test code in if __name__ == '__main__' blocks does not work with the relative imports that were used for the package. They cause an error trying to run the file by itself.
Review the tests and either come up with a new test method, probably using unittest, or just drop the testing code.
The old test code in
if __name__ == '__main__'blocks does not work with the relative imports that were used for the package. They cause an error trying to run the file by itself.Review the tests and either come up with a new test method, probably using unittest, or just drop the testing code.