Skip to content

Commit

Permalink
v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Apr 25, 2024
2 parents de62679 + 11df585 commit 69002dc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions pyEDAA/Reports/Unittesting/JUnit.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ def FromTestsuiteSummary(cls, xmlReportFile: Path, testsuiteSummary: TestsuiteSu
doc._teardownDuration = testsuiteSummary._teardownDuration
doc._totalDuration = testsuiteSummary._totalDuration
doc._status = testsuiteSummary._status
doc._tests = testsuiteSummary._tests
doc._inconsistent = testsuiteSummary._inconsistent
doc._excluded = testsuiteSummary._excluded
doc._skipped = testsuiteSummary._skipped
doc._errored = testsuiteSummary._errored
doc._weak = testsuiteSummary._weak
doc._failed = testsuiteSummary._failed
doc._passed = testsuiteSummary._passed
doc._warningCount = testsuiteSummary._warningCount
doc._errorCount = testsuiteSummary._errorCount
doc._fatalCount = testsuiteSummary._fatalCount
Expand Down
2 changes: 1 addition & 1 deletion pyEDAA/Reports/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
__email__ = "Paebbels@gmail.com"
__copyright__ = "2021-2024, Electronic Design Automation Abstraction (EDA²)"
__license__ = "Apache License, Version 2.0"
__version__ = "0.5.1"
__version__ = "0.5.2"
__keywords__ = ["Reports", "Abstract Model", "Data Model", "Test Case", "Test Suite", "OSVVM", "YAML", "XML"]

from enum import Enum
Expand Down

0 comments on commit 69002dc

Please sign in to comment.