Testing Guide

This guide explains how to run the test suite for the ConversionFlow library.

Test Framework

The project uses the pytest framework for testing.

Running Tests

  1. Install pytest:

    pip install pytest
    
  2. Run the test suite: Navigate to the root directory of the project and run the following command:

    pytest
    

    pytest will automatically discover and run the tests in the tests/ directory.