Skip to content

Commit

Permalink
remove html test results
Browse files Browse the repository at this point in the history
  • Loading branch information
thefringeninja committed Nov 14, 2022
1 parent 353c10a commit 0eb8132
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,9 @@ jobs:
run: |
./gencert.sh
dotnet test --configuration ${{ matrix.configuration }} --blame \
--logger:html --logger:"GitHubActions;report-warnings=false" --logger:"console;verbosity=normal" \
--results-directory=$(pwd)/test-results/test/EventStore.ClientAPI${{ matrix.test }}.Tests \
--logger:"GitHubActions;report-warnings=false" --logger:"console;verbosity=normal" \
--framework ${{ matrix.framework }} \
test/EventStore.ClientAPI${{ matrix.test }}.Tests
- name: Collect Test Results
if: always()
run: |
echo $(find ./test-results -name "*.html" | xargs cat) > test-results.html
- name: Publish Test Results (HTML)
uses: actions/upload-artifact@v1
if: always()
with:
path: test-results.html
name: test-results-${{ matrix.configuration }}-${{ matrix.os }}-${{ matrix.framework }}-EventStore.ClientAPI${{ matrix.test }}.html
publish:
timeout-minutes: 5
needs: [build-dotnet]
Expand Down
8 changes: 3 additions & 5 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<Project>

<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"/>
<PropertyGroup>
<RootNamespace>EventStore.ClientAPI</RootNamespace>
<UseLinkBase>true</UseLinkBase>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1"/>
<PackageReference Include="Ductus.FluentDocker" Version="2.10.57"/>
<PackageReference Include="GitHubActionsTestLogger" Version="1.2.0"/>
<PackageReference Include="GitHubActionsTestLogger" Version="2.0.1"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0"/>
<PackageReference Include="Polly" Version="7.2.1"/>
<PackageReference Include="xunit" Version="2.4.2"/>
Expand Down

0 comments on commit 0eb8132

Please sign in to comment.