Use a simple smoke test per option for pipeline
This commit is contained in:
Родитель
ff7a287ccc
Коммит
4e8ca0d074
|
@ -42,4 +42,4 @@ stages:
|
|||
displayName: dotnet test
|
||||
inputs:
|
||||
command: test
|
||||
arguments: --no-build
|
||||
arguments: --no-build --filter Category=Smoke
|
||||
|
|
|
@ -6,6 +6,7 @@ using Xunit.Abstractions;
|
|||
|
||||
namespace Steeltoe.DotNetNew.WebApi.Test
|
||||
{
|
||||
[Trait("Category", "Unit")]
|
||||
public abstract class Test
|
||||
{
|
||||
private readonly string _option;
|
||||
|
@ -16,6 +17,13 @@ namespace Steeltoe.DotNetNew.WebApi.Test
|
|||
{
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Trait("Category", "Smoke")]
|
||||
public async void TestTemplate()
|
||||
{
|
||||
(await TemplateSandbox()).Dispose();
|
||||
}
|
||||
|
||||
public Test(string option, ITestOutputHelper logger)
|
||||
{
|
||||
_option = option;
|
||||
|
|
Загрузка…
Ссылка в новой задаче