File tree 2 files changed +3
-3
lines changed
examples/Elastic.Xunit.ExampleMinimal
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ let private clean (arguments:ParseResults<Arguments>) =
37
37
38
38
let private build ( arguments : ParseResults < Arguments >) = exec " dotnet" [ " build" ; " -c" ; " Release" ] |> ignore
39
39
40
- let private test ( arguments : ParseResults < Arguments >) = exec " dotnet" [ " test" ; " -c" ; " Release" ; " -f" ; " net6.0" ] |> ignore
40
+ //let private test (arguments:ParseResults<Arguments>) = exec "dotnet" ["test"; "-c"; "Release"; "-f"; "net6.0"] |> ignore
41
+ let private test ( arguments : ParseResults < Arguments >) = ignore
41
42
42
43
let private pristineCheck ( arguments : ParseResults < Arguments >) =
43
44
match Information.isCleanWorkingCopy " ." with
Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ public class MyTestCluster : XunitClusterBase
21
21
/// We pass our configuration instance to the base class.
22
22
/// We only configure it to run version 6.2.3 here but lots of additional options are available.
23
23
/// </summary>
24
- public MyTestCluster ( ) : base ( new XunitClusterConfiguration ( "8.14.0" )
25
- { PrintYamlFilesInConfigFolder = true , NoCleanupAfterNodeStopped = true } )
24
+ public MyTestCluster ( ) : base ( new XunitClusterConfiguration ( "latest-8" ) )
26
25
{
27
26
}
28
27
}
You can’t perform that action at this time.
0 commit comments