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
Hello, I'm using your library and it usefully meets my expectation.
Someday during unit-test, I've got an error message using 'xmlrunner'. $ python3 -m xmlrunner discover ./test -o ./junit-reports /bin/python3: No module named xmlrunner.__main__; 'xmlrunner' is a package and cannot be directly executed
After a timed investigation, I figured out that 'xmlrunner' also resides on pip library and it's could be installed if developer requests to install 'xmlrunner' instead of 'unittest-xml-reporting'.
It would be nice to gentle reminder if any user like me, has "No module named xmlrunner.main; 'xmlrunner' is a package and cannot be directly executed" a message. Removing 'xmlrunner' package and install 'unittest-xml-reporting' was answer.
Thank you
The text was updated successfully, but these errors were encountered:
I understand the issue; there is indeed another project registered in pypi named xmlrunner.
I can leave the issue open for other folks to find; but I don't plan on addressing it.
Hello, I'm using your library and it usefully meets my expectation.
Someday during unit-test, I've got an error message using 'xmlrunner'.
$ python3 -m xmlrunner discover ./test -o ./junit-reports /bin/python3: No module named xmlrunner.__main__; 'xmlrunner' is a package and cannot be directly executed
After a timed investigation, I figured out that 'xmlrunner' also resides on pip library and it's could be installed if developer requests to install 'xmlrunner' instead of 'unittest-xml-reporting'.
It would be nice to gentle reminder if any user like me, has "No module named xmlrunner.main; 'xmlrunner' is a package and cannot be directly executed" a message. Removing 'xmlrunner' package and install 'unittest-xml-reporting' was answer.
Thank you
The text was updated successfully, but these errors were encountered: