Skip to content

Commit

Permalink
Merge pull request #170
Browse files Browse the repository at this point in the history
fix(tasks): fix run debug suite save report type error
  • Loading branch information
lihuacai168 authored Feb 8, 2024
2 parents 65c5d08 + 6951795 commit 709ac6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastrunner/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def async_debug_api(api, project, name, config=None):
def async_debug_suite(suite, project, obj, report, config, user=""):
"""异步执行suite"""
summary, _ = debug_suite(suite, project, obj, config=config, save=False)
save_summary(report, summary, project, user)
save_summary(name=report, summary=summary, project=project, type=2, user=user)


@shared_task(base=MyBaseTask)
Expand Down

0 comments on commit 709ac6d

Please sign in to comment.