how to run pytest ?
- Navigate to the directory .clients\python
# Step 1: Create a virtual environment
python -m venv venv
# Step 2: Activate the virtual environment
.\venv\Scripts\activate # On Windows
# Step 3: Install dependencies
pip install -r test-requirements.txt
# Step 4: Verify installation
pytest --version
# Step 4: Run test
pytest