Skip to content

Commit

Permalink
Fixing Linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Mar 13, 2024
1 parent 0536248 commit 3666624
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions AltCover.Api.Tests/FSApiTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1305,10 +1305,10 @@ module FSApiTests =
DotNet.ToTestArguments prep coll combined = "/p:AltCover=\"true\" /p:AltCoverReportFormat=\"OpenCover\" /p:AltCoverShowStatic=\"-\" /p:AltCoverShowSummary=\"R\" /p:AltCoverForce=\"true\" /p:AltCoverFailFast=\"true\""
@>

let tprep =
TypeSafe.PrepareOptions.Create()
let tprep = TypeSafe.PrepareOptions.Create()

let prep2 = AltCover.PrepareOptions.TypeSafe tprep
let prep2 =
AltCover.PrepareOptions.TypeSafe tprep

test
<@
Expand Down
6 changes: 5 additions & 1 deletion Build/targets.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6009,7 +6009,11 @@ module Targets =

Actions.CheckSample4 before x

Assert.That(File.Exists(@".\_Binaries\cake_dotnettest\OutputRoot\__Instrumented_cake_dotnettest\AltCover.Recorder.g.dll"))
Assert.That(
File.Exists(
"./_Binaries/cake_dotnettest/OutputRoot/__Instrumented_cake_dotnettest/AltCover.Recorder.g.dll"
)
)
finally
Actions.RunDotnet
(fun o' ->
Expand Down

0 comments on commit 3666624

Please sign in to comment.