Skip to content

Commit

Permalink
Run tests with run rather than test
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewIOM committed Apr 17, 2024
1 parent a6ba5d8 commit 2be244b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Target.create "RunTests" (fun _ ->
let rHome = Environment.environVarOrFail "R_HOME"
Trace.logf "R_HOME is set as %s" rHome
let result = Fake.DotNet.DotNet.exec (fun args ->
{ args with Verbosity = Some Fake.DotNet.DotNet.Verbosity.Normal}) "test" ("bristlecone.sln")
{ args with Verbosity = Some Fake.DotNet.DotNet.Verbosity.Normal}) "run" ("tests/Bristlecone.Tests")
if result.ExitCode <> 0 then failwith "Tests failed"
)

Expand Down

0 comments on commit 2be244b

Please sign in to comment.