File tree Expand file tree Collapse file tree 4 files changed +217
-208
lines changed Expand file tree Collapse file tree 4 files changed +217
-208
lines changed Original file line number Diff line number Diff line change 26
26
strategy :
27
27
matrix :
28
28
include :
29
- - os : ubuntu-latest
29
+ - os : ubuntu-22.04
30
30
rid : linux-x64
31
31
- os : macos-latest
32
32
rid : osx-x64
72
72
dotnet build --no-restore --configuration Release
73
73
74
74
- name : Test
75
- run : dotnet test -c Release --no-build --logger trx --results-directory "TestResults-${{ matrix.rid }}"
75
+ run : dotnet test -c Release /p:TestTfmsInParallel=false --logger "console;verbosity=detailed" --no-build --logger trx --results-directory "TestResults-${{ matrix.rid }}"
76
76
77
77
# - name: Upload dotnet test results
78
78
# uses: actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public record Session : IDisposable
21
21
22
22
public void Dispose ( )
23
23
{
24
- if ( ! IsTemp && DataPath ? . EndsWith ( "chdb_" ) == true && Directory . Exists ( DataPath ) )
24
+ if ( IsTemp && DataPath ? . EndsWith ( "chdb_" ) == true && Directory . Exists ( DataPath ) )
25
25
Directory . Delete ( DataPath , true ) ;
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments