tools for emobon-datamanagement
Started on 2022-07-14
Start using this project in a virtual environment
$ virtualenv venv
$ source venv/Scripts/activate
$ pip install -r requirements.txt
Initialize to grab dependencies
$ make init # install dependencies
$ make init-dev # includes the previous + adds dependencies for developers
Build Docs
$ make docu
Run Tests
$ make test # to run all tests
$ PYTEST_LOGCONF=debug-logconf.yml python tests/test_demo.py # to run a specific test with specific logging
Check the code-style and syntax (flake8)
$ make check