maliming
3 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
16 changed files with
25 additions and
36 deletions
-
.github/workflows/build-and-test.yml
-
framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/MongoDB/MongoDbFixture.cs
-
modules/audit-logging/test/Volo.Abp.AuditLogging.MongoDB.Tests/Volo/Abp/AuditLogging/MongoDB/MongoDbFixture.cs
-
modules/background-jobs/test/Volo.Abp.BackgroundJobs.MongoDB.Tests/Volo/Abp/BackgroundJobs/MongoDB/MongoDbFixture.cs
-
modules/blob-storing-database/test/Volo.Abp.BlobStoring.Database.MongoDB.Tests/MongoDB/MongoDbFixture.cs
-
modules/blogging/test/Volo.Blogging.MongoDB.Tests/Volo/Blogging/MongoDB/MongoDbFixture.cs
-
modules/cms-kit/test/Volo.CmsKit.MongoDB.Tests/MongoDB/MongoDbFixture.cs
-
modules/docs/test/Volo.Docs.MongoDB.Tests/Volo/Docs/MongoDB/MongoDbFixture.cs
-
modules/feature-management/test/Volo.Abp.FeatureManagement.MongoDB.Tests/Volo/Abp/FeatureManagement/MongoDB/MongoDbFixture.cs
-
modules/identity/test/Volo.Abp.Identity.MongoDB.Tests/Volo/Abp/Identity/MongoDB/MongoDbFixture.cs
-
modules/identityserver/test/Volo.Abp.IdentityServer.MongoDB.Tests/Volo/Abp/IdentityServer/MongoDbFixture.cs
-
modules/openiddict/test/Volo.Abp.OpenIddict.MongoDB.Tests/Volo/Abp/OpenIddict/MongoDB/MongoDbFixture.cs
-
modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/MongoDbFixture.cs
-
modules/setting-management/test/Volo.Abp.SettingManagement.MongoDB.Tests/Volo/Abp/SettingManagement/MongoDB/MongoDbFixture.cs
-
modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/MongoDbFixture.cs
-
templates/module/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDB/MongoDbFixture.cs
|
|
|
@ -49,15 +49,19 @@ jobs: |
|
|
|
with: |
|
|
|
dotnet-version: 7.0.100 |
|
|
|
|
|
|
|
- name: chown |
|
|
|
run: | |
|
|
|
sudo chown -R $USER:$USER /home/runneradmin |
|
|
|
|
|
|
|
- name: Build All |
|
|
|
run: .\build-all.ps1 -f |
|
|
|
working-directory: .\build |
|
|
|
shell: powershell |
|
|
|
run: ./build-all.ps1 |
|
|
|
working-directory: ./build |
|
|
|
shell: pwsh |
|
|
|
|
|
|
|
- name: Test All |
|
|
|
run: .\test-all.ps1 -f |
|
|
|
working-directory: .\build |
|
|
|
shell: powershell |
|
|
|
run: ./test-all.ps1 |
|
|
|
working-directory: ./build |
|
|
|
shell: pwsh |
|
|
|
|
|
|
|
- name: Codecov |
|
|
|
uses: codecov/codecov-action@v2 |
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -9,8 +9,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -9,8 +9,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -13,8 +13,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -11,8 +11,7 @@ public class MongoDbFixture : IDisposable |
|
|
|
{ |
|
|
|
MongoDbRunner = MongoRunner.Run(new MongoRunnerOptions |
|
|
|
{ |
|
|
|
UseSingleNodeReplicaSet = true, |
|
|
|
KillMongoProcessesWhenCurrentProcessExits = true |
|
|
|
UseSingleNodeReplicaSet = true |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|