Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set multinodetests to run on 'all' builds #1083

Merged
merged 3 commits into from
Jun 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ Target "HelpDocs" <| fun _ ->
Target "All" DoNothing
"BuildRelease" ==> "All"
"RunTests" ==> "All"
"BuildRelease" ==> "MultiNodeTests" //Invovles a lot of BIN copying.
"MultiNodeTests" ==> "All"
"Nuget" ==> "All"

RunTargetOrDefault "Help"
4 changes: 2 additions & 2 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
[assembly: AssemblyCompanyAttribute("Akka.NET Team")]
[assembly: AssemblyCopyrightAttribute("Copyright © 2013-2015 Akka.NET Team")]
[assembly: AssemblyTrademarkAttribute("")]
[assembly: AssemblyVersionAttribute("1.0.2.0")]
[assembly: AssemblyFileVersionAttribute("1.0.2.0")]
[assembly: AssemblyVersionAttribute("1.0.4.0")]
[assembly: AssemblyFileVersionAttribute("1.0.4.0")]
6 changes: 3 additions & 3 deletions src/core/Akka.FSharp/Properties/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ open System.Runtime.InteropServices
[<assembly: AssemblyCompanyAttribute("Akka.NET Team")>]
[<assembly: ComVisibleAttribute(false)>]
[<assembly: CLSCompliantAttribute(true)>]
[<assembly: AssemblyVersionAttribute("1.0.2.0")>]
[<assembly: AssemblyFileVersionAttribute("1.0.2.0")>]
[<assembly: AssemblyVersionAttribute("1.0.4.0")>]
[<assembly: AssemblyFileVersionAttribute("1.0.4.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.0.2.0"
let [<Literal>] Version = "1.0.4.0"
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ protected Address FullAddress(IActorRef actorRef)
return actorRef.Path.Address;
}

[MultiNodeFact]
//[MultiNodeFact(Skip = "Race conditions - needs debugging")]
public void AClusterRouterWithConsistentHashingGroupMustSendToSameDestinationsFromDifferentNodes()
{
Sys.ActorOf(Props.Create<ClusterConsistentHashingGroupSpecConfig.Destination>(), "dest");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected void AssertHashMapping(IActorRef router)
ExpectMsg(destinationA);
}

[MultiNodeFact]
//[MultiNodeFact(Skip = "Race conditions - needs debugging")]
public void ClusterConsistentHashingRouterSpecs()
{
AClusterRouterWithConsistentHashingPoolMustStartClusterWith2Nodes();
Expand Down