Testing is and will always be an integral part of any software development. OpenStack is no exception. In OpenStack, unit testing is done using tox. Installing tox, [apt-get | yum] install python-pip; pip install tox Tox has various tests defined in the envlist. One can open tox.ini for a complete list of envs defined. OpenStack defines, py27 and pep8 test. Former is for unittests and later for style checks. How to run tox and testr Tox can use used to list unit tests and execute all of them or any subset of them using regex. To run all tests, tox -e py27 # you can chose any other ...
Universe from my perspective..