Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions qase-robotframework/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# qase-robotframework 4.0.5

## What's new

- Fixed an issue with handling steps which contains arguments.

# qase-robotframework 4.0.4

## What's new
Expand Down
2 changes: 1 addition & 1 deletion qase-robotframework/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "qase-robotframework"
version = "4.0.4"
version = "4.0.5"
description = "Qase Robot Framework Plugin"
readme = "README.md"
authors = [{name = "Qase Team", email = "support@qase.io"}]
Expand Down
2 changes: 1 addition & 1 deletion qase-robotframework/src/qase/robotframework/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def __parse_steps(self, result) -> List[Step]:

data = None
if hasattr(result.body[i], "args") and result.body[i].args:
data = ' '.join(result.body[i].args)
data = ' '.join(str(arg) for arg in result.body[i].args)

step = Step(
step_type=StepType.GHERKIN,
Expand Down