Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@
"rollForward": false
},
"demaconsulting.reviewmark": {
"version": "1.2.0",
"version": "1.3.1",
"commands": [
"reviewmark"
],
"rollForward": false
},
"demaconsulting.fileassert": {
"version": "0.4.0",
"version": "0.5.1",
"commands": [
"fileassert"
],
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ jobs:

strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
# macOS 26 is not currently supported by GHDL
os: [windows-latest, ubuntu-latest]
dotnet-version: ['8.x', '9.x', '10.x']

steps:
Expand Down
8 changes: 4 additions & 4 deletions docs/reqstream/ots/fileassert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sections:
are run, catching missing outputs as a build-breaking condition.
tags: [ots]
tests:
- FileAssert_Exists
- FileAssert_File

- id: VHDLTest-OTS-FileAssert-Contains
title: FileAssert shall verify that generated output files contain expected content during CI pipeline execution.
Expand All @@ -33,7 +33,7 @@ sections:
generated documentation are present without requiring exact baseline matching.
tags: [ots]
tests:
- FileAssert_Contains
- FileAssert_Text

- id: VHDLTest-OTS-FileAssert-Validate
title: FileAssert shall provide a self-validation mode that exercises its built-in test suite and writes TRX results.
Expand All @@ -45,5 +45,5 @@ sections:
tags: [ots]
tests:
- FileAssert_Results
- FileAssert_Exists
- FileAssert_Contains
- FileAssert_File
- FileAssert_Text
4 changes: 2 additions & 2 deletions src/DEMAConsulting.VHDLTest/DEMAConsulting.VHDLTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@
<!-- Runtime Dependencies -->
<ItemGroup>
<PackageReference Include="DemaConsulting.TestResults" Version="1.9.0" />
<PackageReference Include="YamlDotNet" Version="18.0.0" />
<PackageReference Include="YamlDotNet" Version="18.1.0" />
</ItemGroup>

<!-- Build Tool Dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.10.0" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.11.1" PrivateAssets="All" />
</ItemGroup>

<!-- Code Analysis Dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
Expand Down
Loading