Skip to content

Commit

Permalink
fix: Make test_results be an array and not a str with an array
Browse files Browse the repository at this point in the history
  • Loading branch information
lfvjimisola committed Oct 30, 2024
1 parent 5aa3bbd commit 111bd7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reqstool_python_hatch_plugin/build_hooks/reqstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _append_to_sdist_tar_gz(self, version: str, build_data: Dict[str, Any], arti
self.app.display_debug(f"[reqstool] added to {self.OUTPUT_SDIST_REQSTOOL_YML}: {annotations_file}")

if test_result_patterns:
resources["test_results"] = str(test_result_patterns)
resources["test_results"] = test_result_patterns
self.app.display_debug(
f"[reqstool] added test_results to {self.OUTPUT_SDIST_REQSTOOL_YML}: {test_result_patterns}"
)
Expand Down

0 comments on commit 111bd7d

Please sign in to comment.