Skip to content

Commit 5300d2f

Browse files
author
Jakob Jungreuthmayer
committedNov 24, 2023
CHANGELOG added + README updated
1 parent 86feed2 commit 5300d2f

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed
 

‎CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
## [1.0.4] - 2023-11-24
4+
- Bug-Fix: cancellation-request not working properly
5+
- Feature: execution-time of testcases
6+
- Feature: parametrized name of VUnit-run-script in VSCode-extension-settings
7+
- Feature: executing test-suites in GUI-Mode disabled by default
8+
9+
## [1.0.0] - 2023-06-12
10+
- First Release

‎README.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,18 @@ The following configuration properties are available:
4545

4646
Property | Description
4747
--------------------------------------|---------------------------------------------------------------
48-
`vunit-by-hgb.python` | Path to python executable.
49-
`vunit-by-hgb.shellOptions` | VUnit run.py command line options when running tests.
50-
`vunit-by-hgb.guiOptions` | VUnit run.py command line options when running GUI (-g should not be added here).
51-
`vunit-by-hgb.exportJsonOptions` | VUnit run.py command line options when discovering test with --export-json.
52-
`vunit-by-hgb.matchProblems` | Display Errors and Warnings from VUnit as Problems
53-
`vunit-by-hgb.matchAssertionFailure` | Display Assertion-Failures from VUnit as Problems
48+
`vunit-by-hgb.scriptname` | consistent name of all VUnit-run-scripts (default: `run.py`)
49+
`vunit-by-hgb.python` | Path to python executable.
50+
`vunit-by-hgb.shellOptions` | VUnit run.py command line options when running tests.
51+
`vunit-by-hgb.guiOptions` | VUnit run.py command line options when running GUI (-g should not be added here).
52+
`vunit-by-hgb.exportJsonOptions` | VUnit run.py command line options when discovering test with --export-json.
53+
`vunit-by-hgb.showExecutionTime` | Display Execution-Time for every testcase
54+
`vunit-by-hgb.executeMultipleGuiTestcases` | Executing multiple GUI-Testcases at once
55+
`vunit-by-hgb.matchProblems` | Display Errors and Warnings from VUnit as Problems
56+
`vunit-by-hgb.matchAssertionFailure` | Display Assertion-Failures from VUnit as Problems
5457

5558
## Related Projects
56-
- HDLRegression is an alternative to VUnit. Use [HDLRegressionByHGB](https://github.com/HSD-ESD/HDLRegression-by-HGB)to run HDLRegression tests from the VS-Code sidebar. (currently under development)
59+
- HDLRegression is an alternative to VUnit. Use [HDLRegressionByHGB](https://github.com/HSD-ESD/HDLRegression-by-HGB) to run HDLRegression tests from the VS-Code sidebar. (currently under development)
5760

5861
## License
5962

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"default": ""
7777
},
7878
"vunit-by-hgb.showExecutionTime": {
79-
"description": "Display Execution-Time for every testcase ",
79+
"description": "Display Execution-Time for every testcase",
8080
"type": "boolean",
8181
"default": true
8282
},

0 commit comments

Comments
 (0)
Please sign in to comment.