From a90def074699ff46417a67547fcfa3c9403d3eb0 Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Wed, 13 Mar 2024 11:04:52 +0200 Subject: [PATCH] qase-pytest: fix --qase-testops-run-complete Wasn't working because of a typo in the options setup. Fixes #107 Fixes #160 Fixes #174 --- qase-pytest/pyproject.toml | 2 +- qase-pytest/src/qaseio/pytest/options.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qase-pytest/pyproject.toml b/qase-pytest/pyproject.toml index ceff1409..34ec8cf6 100644 --- a/qase-pytest/pyproject.toml +++ b/qase-pytest/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "qase-pytest" -version = "5.0.4" +version = "5.0.5" description = "Qase Pytest Plugin for Qase TestOps and Qase Report" readme = "README.md" authors = [{name = "Qase Team", email = "support@qase.io"}] diff --git a/qase-pytest/src/qaseio/pytest/options.py b/qase-pytest/src/qaseio/pytest/options.py index 7aab46ba..233778e3 100644 --- a/qase-pytest/src/qaseio/pytest/options.py +++ b/qase-pytest/src/qaseio/pytest/options.py @@ -101,7 +101,7 @@ def addoptions(parser, group, added=[]): parser, group, "--qase-testops-run-complete", - dest="qase_testops_run_description", + dest="qase_testops_run_complete", type="bool", default=False, help="Complete run after tests execution"