I use next command to run my tests:
python -m unittest discover -p "*.py"
It writes test's result to stdout. But I would like get result as file (if possible in html) Now I get it using PyCharm and it works perfectly but I need to run tests on remote machines automatically and get report of course. How can I do it?