cs-codex-dist-tests/ProjectPlugins/DeployAndRunPlugin/CoreInterfaceExtensions.cs

14 lines
342 B
C#

using Core;
using KubernetesWorkflow.Types;
namespace DeployAndRunPlugin
{
public static class CoreInterfaceExtensions
{
public static RunningContainer DeployAndRunContinuousTests(this CoreInterface ci, RunConfig runConfig)
{
return ci.GetPlugin<DeployAndRunPlugin>().Run(runConfig);
}
}
}