Dev Notes

How to use python virtualenv

$ workon <virtualenv_name>
$ [<virtualenv_name>] ...
$ deactivate

How to run unit test

$ make utest

How to run sytem test

$ sudo make install
$ make stest
$ sudo make uninstall

How to run unit test coverage

$ make coverage

How to run flake8 and pylint

$ make flake
$ make pylint

How to build a docker image

$ make docker-image