Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed Dec 24, 2015
1 parent 09b428d commit 67da0b8
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 9 deletions.
1 change: 1 addition & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ Target "RunTests" (fun _ ->
testAssemblies
|> NUnit (fun p ->
{ p with
Framework = "v4.0.30319"
DisableShadowCopy = true
TimeOut = TimeSpan.FromMinutes 60.
OutputFile = "TestResults.xml" })
Expand Down
5 changes: 3 additions & 2 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ nuget Nuget.CommandLine
nuget FAKE
nuget FsPickler >= 1.7.0
nuget FsUnit 1.3.0.1
nuget NUnit 2.6.3
nuget NUnit ~> 2.6.3
nuget NUnit.Runners ~> 2.6.3
nuget Unquote 2.2.2
github fsharp/FAKE modules/Octokit/Octokit.fsx
github fsharp/FAKE modules/Octokit/Octokit.fsx
9 changes: 5 additions & 4 deletions paket.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
REDIRECTS: ON
NUGET
remote: https://nuget.org/api/v2
remote: https://www.nuget.org/api/v2
specs:
FAKE (4.10.5)
FAKE (4.11.3)
FsPickler (1.7.0)
FsUnit (1.3.0.1)
NUnit (>= 2.6.3)
Expand All @@ -13,12 +13,13 @@ NUGET
Microsoft.Bcl (>= 1.1.10)
Microsoft.Bcl.Build (>= 1.0.14)
NuGet.CommandLine (3.3.0)
NUnit (2.6.3)
NUnit (2.6.4)
NUnit.Runners (2.6.4)
Octokit (0.17.0)
Microsoft.Net.Http
Unquote (2.2.2)
GITHUB
remote: fsharp/FAKE
specs:
modules/Octokit/Octokit.fsx (25ca24118d3b0f7b51d5c72e6895b27329683b59)
modules/Octokit/Octokit.fsx (29cd4ee57792f0f35e18bd97d4517eb8c94de569)
Octokit
12 changes: 11 additions & 1 deletion tests/Thespian.Cluster.Tests/app.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>

</configuration>
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="2.6.4.14350" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" />
</dependentAssembly>
</assemblyBinding></runtime></configuration>
9 changes: 8 additions & 1 deletion tests/Thespian.TestCluster/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,12 @@
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
12 changes: 11 additions & 1 deletion tests/Thespian.Tests/app.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>

</configuration>
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="2.6.4.14350" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" />
</dependentAssembly>
</assemblyBinding></runtime></configuration>

0 comments on commit 67da0b8

Please sign in to comment.