Skip to content

Commit

Permalink
Generate readme once, to avoid race conditions (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
chtenb authored Nov 12, 2024
1 parent 03597fb commit b75376e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Rubjerg.Graphviz.Test/Rubjerg.Graphviz.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@

<ItemGroup>
<PackageReference Include="NUnit.ConsoleRunner">
<Version>3.17.0</Version>
<Version>3.18.1</Version>
</PackageReference>
<PackageReference Include="NUnit">
<Version>3.14.0</Version>
</PackageReference>
<PackageReference Include="NUnit.Extension.TeamCityEventListener">
<Version>1.0.7</Version>
<Version>1.0.9</Version>
</PackageReference>
<PackageReference Include="OpenCover">
<Version>4.7.1221</Version>
</PackageReference>
<!--We need both packages below to run the tests in VS https://github.com/microsoft/vstest/issues/1870-->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

<ItemGroup>
Expand All @@ -50,7 +50,7 @@
<PropertyGroup>
<GenerateReadme>generatereadme.bat</GenerateReadme>
</PropertyGroup>
<Exec Command="$(GenerateReadme)" />
<Exec Command="$(GenerateReadme)" Condition="'$(TargetFramework)' == 'net8.0'" />
</Target>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@

<ItemGroup>
<PackageReference Include="NUnit.ConsoleRunner">
<Version>3.17.0</Version>
<Version>3.18.1</Version>
</PackageReference>
<PackageReference Include="NUnit">
<Version>3.14.0</Version>
</PackageReference>
<PackageReference Include="NUnit.Extension.TeamCityEventListener">
<Version>1.0.7</Version>
<Version>1.0.9</Version>
</PackageReference>
<PackageReference Include="OpenCover">
<Version>4.7.1221</Version>
</PackageReference>
<!--We need both packages below to run the tests in VS https://github.com/microsoft/vstest/issues/1870-->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion nunit-console.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
packages\\nunit.consolerunner\\3.17.0\\tools\\nunit3-console.exe "$@" --trace=Off --where "cat!=Slow and cat!=Flaky"
packages\\nunit.consolerunner\\3.18.1\\tools\\nunit3-console.exe "$@" --trace=Off --where "cat!=Slow and cat!=Flaky"

0 comments on commit b75376e

Please sign in to comment.