Reputation: 147
I have following project structure:
runner.py file contains:
import nose
if __name__ == '__main__':
nose.main(argv=['-v', "some_folder/", "--with-allure", "--logdir=D:\Reports"])
The problem: After execution, I go to given logdir and see 3 xml files (2 of them are identical), which causes duplicates in the generated allure report:
Seems like duplication is caused by __init__.py file, because if I move test2.py to the same folder as test1.py I don't face such problems.
Upvotes: 0
Views: 690