CLI Setup
Last updated
Last updated
2025 Qodo. All Rights Reserved.
Learn more about Qodo Cover in our GitHub repository:
Before you begin, make sure you have the following:
OPENAI_API_KEY
set in your environment variables, which is required for calling the OpenAI API.
Code Coverage tool: A Cobertura XML code coverage report is required for the tool to function correctly.
For example, in Python one could use pytest-cov
. Add the --cov-report=xml
option when running Pytest.
Note: We are actively working on adding more coverage types but please feel free to open a PR and contribute to cover_agent/CoverageProcessor.py
If running directly from the repository you will also need:
Python installed on your system.
Poetry installed for managing Python package dependencies. Installation instructions for Poetry can be found at https://python-poetry.org/docs/.
Qodo Cover can be installed as a Python Pip package or run as a standalone executable.
Python Pip
To install the Python Pip package directly via GitHub run the following command:
Binary
The binary can be run without any Python environment installed on your system (e.g. within a Docker container that does not contain Python). You can download the release for your system by navigating to the project's release page.
Run the following command to install all the dependencies and run the project from source:
After downloading the executable or installing the Pip package you can run the Cover Agent to generate and validate unit tests. Execute it from the command line by using the following command:
You can use the example code below to try out the Cover Agent. (Note that the usage_examples file provides more elaborate examples of how to use the Cover Agent)
Python
Follow the steps in the README.md file located in the templated_tests/python_fastapi/
directory to setup an environment, then return to the root of the repository, and run the following command to add tests to the python fastapi example:
Go
For an example using go cd
into templated_tests/go_webservice
, set up the project following the README.md
. To work with coverage reporting, you need to install gocov
and gocov-xml
. Run the following commands to install these tools:
and then run the following command:
Java
For an example using java cd
into templated_tests/java_gradle
, set up the project following the README.md. To work with jacoco coverage reporting, follow the README.md Requirements section: and then run the following command:
A few debug files will be outputted locally within the repository (that are part of the .gitignore
)
run.log
: A copy of the logger that gets dumped to your stdout
test_results.html
: A results table that contains the following for each generated test:
Test status
Failure reason (if applicable)
Exit code,
stderr
stdout
Generated test
If you set an environment variable WANDB_API_KEY
, the prompts, responses, and additional information will be logged to Weights and Biases.
This project uses LiteLLM to communicate with OpenAI and other hosted LLMs (supporting 100+ LLMs to date). To use a different model other than the OpenAI default you'll need to:
Export any environment variables needed by the supported LLM following the LiteLLM instructions.
Call the name of the model using the --model
option when calling Cover Agent.
For example (as found in the LiteLLM Quick Start guide):
OpenAI Compatible Endpoint
Azure OpenAI Compatible Endpoint