Skip to content

Commit

Permalink
Fix build script, it excludes Akka.Streams.Tests.TCK from test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus committed Aug 21, 2020
1 parent a0ad0f3 commit e81ce96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.fsx
Expand Up @@ -232,6 +232,7 @@ Target "RunTests" (fun _ ->
let projects =
let rawProjects = match (isWindows) with
| true -> !! "./src/**/*.Tests.*sproj"
++ "./src/**/Akka.Streams.Tests.TCK.csproj"

This comment has been minimized.

Copy link
@Aaronontheweb

Aaronontheweb Aug 21, 2020

Member

Good call

| _ -> !! "./src/**/*.Tests.*sproj" // if you need to filter specs for Linux vs. Windows, do it here
rawProjects |> Seq.choose filterProjects

Expand Down
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\common.props" />
<Import Project="..\..\xunitSettings.props" />
<PropertyGroup>
<AssemblyName>Akka.Streams.Tests</AssemblyName>
<AssemblyName>Akka.Streams.Tests.TCK</AssemblyName>
<!-- Reactive.Streams.TCK isn't compatible with .NET Core -->
<!-- Reactive. -->
<TargetFrameworks>$(NetFrameworkTestVersion)</TargetFrameworks>
Expand Down

0 comments on commit e81ce96

Please sign in to comment.