From 169046b49bb45c2e5ffe77000e8dff34a896b777 Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Mon, 25 Mar 2024 13:00:24 +0200 Subject: [PATCH] pytest: use sane defaults in the config example * Projects don't have test plans upon creation, so using plan=1 results in an error or empty plan. * Reporter should create a new test run by default, not reuse the same run=1. * Creating defects from failed autotests is also undesired by default. --- qase-pytest/README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/qase-pytest/README.md b/qase-pytest/README.md index 37f4b329..109bd014 100644 --- a/qase-pytest/README.md +++ b/qase-pytest/README.md @@ -37,21 +37,17 @@ All configuration options are listed in the following doc: [Configuration](docs/ } }, "testops": { - "bulk": true, + "project": "YOUR_PROJECT_CODE", "api": { "token": "YOUR_API_TOKEN", "host": "qase.io" }, "run": { - "id": 1, - "title": "Test run title", + "title": "Automated test run", "complete": true }, - "plan": { - "id": 1 - }, - "defect": true, - "project": "YOUR_PROJECT_CODE", + "defect": false, + "bulk": true, "chunk": 200 }, "framework": {