This file contains information useful for contributing to the Krenalis Python SDK.
- Create the venv:
python3 -m venv .venv
- Activate the venv:
source .venv/bin/activate
- Install the dependencies from
requirements.txt:
python3 -m pip install -r ./requirements.txt
- Start the testing server with:
python3 krenalis/analytics/test/test_server/server.py
- In another shell, activate the venv:
source .venv/bin/activate
- Run the tests:
python3 -m pytest -v .