Skip to content

Commit

Permalink
Do not run new tests on netcoreapp2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
auduchinok committed Apr 2, 2018
1 parent 2bf9138 commit 2949028
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/service/CSharpProjectAnalysis.fs
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ let getEntitiesUses source =
|> List.ofSeq

[<Test>]
#if NETCOREAPP2_0
[<Ignore("SKIPPED: need to check if these tests can be enabled for .NET Core testing of FSharp.Compiler.Service")>]
#endif
let ``Different types with the same short name equality check`` () =
let source = """
module CtorTest
Expand All @@ -175,6 +178,9 @@ let (s2: FSharp.Compiler.Service.Tests.String) = null
| _ -> sprintf "Expecting two symbols, got %A" stringSymbols |> failwith

[<Test>]
#if NETCOREAPP2_0
[<Ignore("SKIPPED: need to check if these tests can be enabled for .NET Core testing of FSharp.Compiler.Service")>]
#endif
let ``Different namespaces with the same short name equality check`` () =
let source = """
module CtorTest
Expand Down

0 comments on commit 2949028

Please sign in to comment.