Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 606 Bytes

File metadata and controls

41 lines (27 loc) · 606 Bytes

Contributing

This file contains information useful for contributing to the Krenalis Python SDK.

How to test the SDK

  1. Create the venv:
python3 -m venv .venv
  1. Activate the venv:
source .venv/bin/activate
  1. Install the dependencies from requirements.txt:
python3 -m pip install -r ./requirements.txt
  1. Start the testing server with:
python3 krenalis/analytics/test/test_server/server.py
  1. In another shell, activate the venv:
source .venv/bin/activate
  1. Run the tests:
python3 -m pytest -v .