Open noyainrain opened 9 years ago
See https://docs.python.org/2/library/unittest.html#test-discovery . This mostly means moving module unit tests to own test modules.
Unit tests can then be easily run with python -m unittest discover.
python -m unittest discover
See https://docs.python.org/2/library/unittest.html#test-discovery . This mostly means moving module unit tests to own test modules.
Unit tests can then be easily run with
python -m unittest discover
.