Skip to content

Commit

Permalink
Merge branch 'master' into release/Genbu
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Jan 24, 2021
2 parents 484aac5 + d6b301b commit fbfe245
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AltCover.Monitor.Tests/AltCover.Monitor.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<OutputPath>$(SolutionDir)_Binaries/$(AssemblyName)/$(Configuration)+$(Platform)/</OutputPath>
<IntermediateOutputPath>$(SolutionDir)_Intermediate/$(AssemblyName)/$(Configuration)+$(Platform)/</IntermediateOutputPath>
<OtherFlags>--keyfile:$(ProjectDir)..\Build\Infrastructure.snk</OtherFlags>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DefineConstants Condition="'$(APPVEYOR)' == ''">DEBUG;TRACE;CODE_ANALYSIS;Monitor</DefineConstants>
<DefineConstants Condition="'$(APPVEYOR)' != ''">DEBUG;TRACE;CODE_ANALYSIS;Monitor;BUILD_ON_APPVEYOR</DefineConstants>
<RollForward>Major</RollForward>
<DefineConstants>TRACE;DEBUG;CODE_ANALYSIS;Monitor</DefineConstants>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion AltCover.Monitor.Tests/MonitorTest.fs
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ module MonitorTests =
test'<@ a && a0 @> "should be running under AltCover"
let code = b.Code
let branch = b.Branch
test <@ (code, branch) = (137, 34) @>
#if BUILD_ON_APPVEYOR
test <@ (code, branch) = (70, 9) @>
#else
test <@ (code, branch) = (137, 34) @>
#endif
2 changes: 1 addition & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Q. Never mind the fluff -- how do I get started?

A. Start with the Quick Start guide : https://github.com/SteveGilham/altcover/wiki/QuickStart-Guide

# 7.6.810 (Genbu series release 15)
# 7.6.812 (Genbu series release 15)
* [VISUALIZER] Move the global tool to the new 0.10 AvaloniaUI release
* Monitor API
* [BUGFIX] Harden the monitor API `TryGetVisitTotals` against race conditions in multi-threaded tests
Expand Down

0 comments on commit fbfe245

Please sign in to comment.