-
Install Conda if you haven't already:
-
Create and activate a new conda environment:
conda create -n ml-assessment python=3.12 conda activate ml-assessment
-
Install Poetry using pip:
pip install poetry
-
Install project dependencies:
poetry install
- Create a
.envfile in the root directory of the project - Copy the contents of the provided
.envfile into your local.envfile
To run the tests, make sure you have:
- Activated your virtual environment
- Installed all dependencies using Poetry
- Created and populated the
.envfile
Then run:
pytestFor more detailed test output:
pytest -vFor test coverage report:
pytest --cov