The following commands should be run from `dosis-base/web-ui/`

### To run tests

    python2.7 manage.py test apps.manualfill --settings='apps.manualfill.test_settings'

### Code Coverage

You will need to `pip install coverage` first.  Then run the following from the `/dosis-base/web-ui/`
folder (or change the paths to absolute)

    coverage run --source='apps/manualfill' --omit='apps/manualfill/tests/*' manage.py test apps.manualfill --settings='apps.manualfill.test_settings'
    coverage report