File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 47
47
- name : .NET Build
48
48
run : dotnet build Build.csproj -c Release /p:CI=true
49
49
- name : Dapper Tests
50
- run : dotnet test tests/Dapper.Tests/Dapper.Tests.csproj -c Release --logger GitHubActions / p:CI=true
50
+ run : dotnet test tests/Dapper.Tests/Dapper.Tests.csproj -c Release --logger GitHubActions - p:CI=true -p:TestTfmsInParallel=false
51
51
env :
52
52
MySqlConnectionString : Server=localhost;Port=${{ job.services.mysql.ports[3306] }};Uid=root;Pwd=root;Database=test;Allow User Variables=true
53
53
OLEDBConnectionString : Provider=SQLOLEDB;Server=tcp:localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ dotnet build ".\Build.csproj" -c Release /p:CI=true
22
22
Write-Host " Done building." - ForegroundColor " Green"
23
23
24
24
if ($RunTests ) {
25
- Write-Host " Running tests: Build.csproj traversal (all frameworks) " - ForegroundColor " Magenta"
26
- dotnet test " .\Build.csproj" - c Release -- no- build
25
+ Write-Host " Running tests: Build.csproj" - ForegroundColor " Magenta"
26
+ dotnet test " .\Build.csproj" - c Release -- no- build - p:TestTfmsInParallel = false
27
27
if ($LastExitCode -ne 0 ) {
28
28
Write-Host " Error with tests, aborting build." - Foreground " Red"
29
29
Exit 1
You can’t perform that action at this time.
0 commit comments