File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
examples/Elastic.Xunit.ExampleMinimal Expand file tree Collapse file tree 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>) =
3737
3838let private build ( arguments : ParseResults < Arguments >) = exec " dotnet" [ " build" ; " -c" ; " Release" ] |> ignore
3939
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
4142
4243let private pristineCheck ( arguments : ParseResults < Arguments >) =
4344 match Information.isCleanWorkingCopy " ." with
Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ public class MyTestCluster : XunitClusterBase
2121 /// We pass our configuration instance to the base class.
2222 /// We only configure it to run version 6.2.3 here but lots of additional options are available.
2323 /// </summary>
24- public MyTestCluster ( ) : base ( new XunitClusterConfiguration ( "8.14.0" )
25- { PrintYamlFilesInConfigFolder = true , NoCleanupAfterNodeStopped = true } )
24+ public MyTestCluster ( ) : base ( new XunitClusterConfiguration ( "latest-8" ) )
2625 {
2726 }
2827 }
You can’t perform that action at this time.
0 commit comments