Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 944 Bytes

File metadata and controls

36 lines (22 loc) · 944 Bytes

Coding Task

Overview

Welcome to the coding task repository. This task is designed to assess your skills in Git version control, python coding and problem solving.

Task Description

Detail description of the tasks can be found in the GitHub_task word doc sent via email

Repository Structure

  • src/: Contains the main source code files.
  • tests/: Includes unit tests for validating the implementation.
  • inputs/: Provides sample data required for the task.

Setup Instructions

To set up the project locally, follow these steps:

  1. Clone the Repository:

    git clone https://github.com/[your-username]/[repository-name].git
    cd [repository-name]
    
  2. Create python virtual environment:

    python3 -m venv venv_name
    source venv_name/bin/activate # On Windows, use venv_name\Scripts\activate
    
  3. Checkout branch:

    git checkout -b feature/your-feature-name