Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: enable syncing robot test cases with qase #2200

Merged
merged 2 commits into from
Dec 18, 2024
Merged
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
8 changes: 3 additions & 5 deletions pipelines/utilities/junit_to_qase.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,9 @@ def complete_test_run(test_run_id):
parent_suite_id = 58 # e2e-pytest
else:
test_type = "robot"
# TODO
# the folder structure of robot test hasn't been
# well-defined in qase
parent_suite_id = None
raise Exception(f"Unsupported test_type = {test_type}")
# if it's a robot report, missing suites will be added under
# parent suite e2e-robot (id=89)
parent_suite_id = 89 # e2e-robot
print(f"test_type = {test_type}")

# collect test results dict from test cases xml
Expand Down
Loading