I have a project being built with Pybuilder. I cloned it onto a new computer, and when I ran pyb
, my unit tests complained that there was no module named xmlrunner
. So after I did pip install xmlrunner
, I get a build error from Pybuilder that:
'unicode' object has no attribute 'write'
.
If I remove my unit tests from the unittest search path, the build completes successfully. When I run the unit tests directly, they complete successfully. So I'm thinking that somehow XMLRunner is failing. Pip installed XMLRunner version 1.7.7. Thanks in advance for your help.