3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-10-04 00:33:58 +00:00

fix induction

This commit is contained in:
N. Engelhardt 2022-02-07 22:01:52 +01:00
parent 7d3545dc86
commit 7ee357fcc8
10 changed files with 15 additions and 11 deletions

View file

@ -773,7 +773,7 @@ class SbyTask:
junit_skipped = 0
print(f'<?xml version="1.0" encoding="UTF-8"?>', file=f)
print(f'<testsuites>', file=f)
print(f'<testsuite timestamp="{junit_time}" hostname="{platform.node()}" package="{junit_ts_name}" id="1" name="{junit_tc_name}" tests="{junit_tests}" errors="{junit_errors}" failures="{junit_failures}" time="{self.total_time}" skipped="{junit_skipped}">', file=f)
print(f'<testsuite timestamp="{junit_time}" hostname="{platform.node()}" package="{junit_ts_name}" id="0" name="{junit_tc_name}" tests="{junit_tests}" errors="{junit_errors}" failures="{junit_failures}" time="{self.total_time}" skipped="{junit_skipped}">', file=f)
print(f'<properties>', file=f)
print(f'<property name="os" value="{platform.system()}"/>', file=f)
print(f'</properties>', file=f)