Simple program to convert locust.io csv output into JUnit XML. Use this to convert the output into pipelines like Azure DevOps or Jenkins.
python main.py -p <prefix>
Install the necessary Python version and virtual environment:
./dev.sh
Activate the virtual environment in order to run the right Python version:
. venv/bin/activate
Installing Python package dependencies requires updates to the pyproject.toml
, and then re-generating requirements.txt
:
pip-compile --extra=dev --output-file=requirements.txt pyproject.toml
Syncing the virtual environment's packages:
pip-sync
docker build -t locust-csv-to-junit .