From a4f1060d73ce21b63c1cfaa1a65a7716658c0601 Mon Sep 17 00:00:00 2001 From: Jakub Stawowy Date: Wed, 30 Nov 2022 20:54:02 +0100 Subject: [PATCH] add info about junit xml report --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 44f8995..c4f5759 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,13 @@ Your project will be executed with following command: pip install -e . && python3 setup.py pytest ``` +When configuring your setup.cfg ensure that the junit `tests.xml` report generation is enabled. +These two options should be present: +```ini +addopts=--junitxml=tests.xml +junit_family=legacy +``` + Check out our [setup.py](setup.py) and [setup.cfg](setup.cfg) files. ## Automatic assessment