Skip to content

Commit

Permalink
Remove flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jun 28, 2016
1 parent 2014844 commit d629f51
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 317 deletions.
9 changes: 0 additions & 9 deletions integrationtests/Paket.IntegrationTests/InstallSpecs.fs
Original file line number Diff line number Diff line change
Expand Up @@ -314,15 +314,6 @@ let ``#1663 should install google apis``() =
let s1 = File.ReadAllText oldFile |> normalizeLineEndings
let s2 = File.ReadAllText newFile |> normalizeLineEndings
s2 |> shouldEqual s1

[<Test>]
let ``#1523 should install native in mixed setting``() =
install "i001523-mixed-native" |> ignore
let newFile = Path.Combine(scenarioTempPath "i001523-mixed-native","TestPaket","TestPaket.vcxproj")
let oldFile = Path.Combine(originalScenarioPath "i001523-mixed-native","TestPaket","TestPaket.vcxprojtemplate")
let s1 = File.ReadAllText oldFile |> normalizeLineEndings
let s2 = File.ReadAllText newFile |> normalizeLineEndings
s2 |> shouldEqual s1

[<Test>]
let ``#1523 should emit correct native in mixed setting``() =
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 5 additions & 5 deletions src/Paket.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
[assembly: AssemblyTitleAttribute("Paket.Bootstrapper")]
[assembly: AssemblyProductAttribute("Paket")]
[assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")]
[assembly: AssemblyVersionAttribute("3.3.6")]
[assembly: AssemblyFileVersionAttribute("3.3.6")]
[assembly: AssemblyInformationalVersionAttribute("3.3.6")]
[assembly: AssemblyVersionAttribute("3.4.0")]
[assembly: AssemblyFileVersionAttribute("3.4.0")]
[assembly: AssemblyInformationalVersionAttribute("3.4.0-alpha001")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "3.3.6";
internal const string InformationalVersion = "3.3.6";
internal const string Version = "3.4.0";
internal const string InformationalVersion = "3.4.0-alpha001";
}
}
10 changes: 5 additions & 5 deletions src/Paket.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("3.3.6")>]
[<assembly: AssemblyFileVersionAttribute("3.3.6")>]
[<assembly: AssemblyInformationalVersionAttribute("3.3.6")>]
[<assembly: AssemblyVersionAttribute("3.4.0")>]
[<assembly: AssemblyFileVersionAttribute("3.4.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.4.0-alpha001")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "3.3.6"
let [<Literal>] InformationalVersion = "3.3.6"
let [<Literal>] Version = "3.4.0"
let [<Literal>] InformationalVersion = "3.4.0-alpha001"
10 changes: 5 additions & 5 deletions src/Paket.PowerShell/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("3.3.6")>]
[<assembly: AssemblyFileVersionAttribute("3.3.6")>]
[<assembly: AssemblyInformationalVersionAttribute("3.3.6")>]
[<assembly: AssemblyVersionAttribute("3.4.0")>]
[<assembly: AssemblyFileVersionAttribute("3.4.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.4.0-alpha001")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "3.3.6"
let [<Literal>] InformationalVersion = "3.3.6"
let [<Literal>] Version = "3.4.0"
let [<Literal>] InformationalVersion = "3.4.0-alpha001"
10 changes: 5 additions & 5 deletions src/Paket/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A dependency manager for .NET with support for NuGet packages and git repositories.")>]
[<assembly: AssemblyVersionAttribute("3.3.6")>]
[<assembly: AssemblyFileVersionAttribute("3.3.6")>]
[<assembly: AssemblyInformationalVersionAttribute("3.3.6")>]
[<assembly: AssemblyVersionAttribute("3.4.0")>]
[<assembly: AssemblyFileVersionAttribute("3.4.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.4.0-alpha001")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "3.3.6"
let [<Literal>] InformationalVersion = "3.3.6"
let [<Literal>] Version = "3.4.0"
let [<Literal>] InformationalVersion = "3.4.0-alpha001"

0 comments on commit d629f51

Please sign in to comment.