- install lettuce
- install selenium driver for python
- install Firefox
- run tests with
lettuce
(it will start Firefox)
-
install unittest2:
pip install unittest2
-
run unit tests:
python test_runner.py /usr/local/google_appengine tests
-
install coverage:
pip install coverage
-
run unit tests with coverage:
coverage run --omit=/Applications*,/System*,/Library*,markdown* test_runner.py /usr/local/google_appengine tests
-
see the coverage report:
coverage report -m