Skip to content

Commit b75a8ed

Browse files
committed
Labels.
1 parent da312bc commit b75a8ed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Provider/src/FirebirdSql.Data.TestsBase/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static int Main(string[] args)
2727
{
2828
args = args?.Any() ?? false
2929
? args
30-
: new[] { "--noresult" };
30+
: new[] { "--noresult", "--labels=All" };
3131
return new AutoRun(Assembly.GetEntryAssembly()).Execute(args);
3232
}
3333
}

Provider/tests.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ function Tests-FirebirdClient() {
4040
echo "=== $($MyInvocation.MyCommand.Name) ==="
4141

4242
cd $testsNETDir
43-
Check-ExitCode { .\FirebirdSql.Data.FirebirdClient.Tests.exe --result=tests.xml }
43+
Check-ExitCode { .\FirebirdSql.Data.FirebirdClient.Tests.exe --result=tests.xml --labels=All }
4444
cd $testsCOREDir
45-
Check-ExitCode { dotnet FirebirdSql.Data.FirebirdClient.Tests.dll --result=tests.xml }
45+
Check-ExitCode { dotnet FirebirdSql.Data.FirebirdClient.Tests.dll --result=tests.xml --labels=All }
4646

4747
echo "=== END ==="
4848
}
@@ -51,7 +51,7 @@ function Tests-EF() {
5151
echo "=== $($MyInvocation.MyCommand.Name) ==="
5252

5353
cd "$baseDir\src\EntityFramework.Firebird.Tests\bin\$Configuration\net452"
54-
Check-ExitCode { .\EntityFramework.Firebird.Tests.exe --result=tests.xml }
54+
Check-ExitCode { .\EntityFramework.Firebird.Tests.exe --result=tests.xml --labels=All }
5555

5656
echo "=== END ==="
5757
}
@@ -60,7 +60,7 @@ function Tests-EFCore() {
6060
echo "=== $($MyInvocation.MyCommand.Name) ==="
6161

6262
cd "$baseDir\src\FirebirdSql.EntityFrameworkCore.Firebird.Tests\bin\$Configuration\netcoreapp2.0"
63-
Check-ExitCode { dotnet FirebirdSql.EntityFrameworkCore.Firebird.Tests.dll --result=tests.xml }
63+
Check-ExitCode { dotnet FirebirdSql.EntityFrameworkCore.Firebird.Tests.dll --result=tests.xml --labels=All }
6464

6565
echo "=== END ==="
6666
}

0 commit comments

Comments
 (0)