Skip to content

Commit 3d490a5

Browse files
Removd integration filtering
1 parent 3de7405 commit 3d490a5

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/CodeQuality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: dotnet build --no-restore --no-incremental /p:ContinuousIntegrationBuild=true
4646

4747
- name: Run Tests and Compute Coverage
48-
run: dotnet-coverage collect "dotnet test SysML2.NET.sln --filter Category!='Integration' --no-restore --no-build --verbosity quiet" -f xml -o "coverage.xml"
48+
run: dotnet-coverage collect "dotnet test SysML2.NET.sln --no-restore --no-build --verbosity quiet" -f xml -o "coverage.xml"
4949

5050
- name: Sonarqube end
5151
run: dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"

SySML2.NET.REST.Tests/RestClientTestFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace SySML2.NET.REST.Tests
3232
/// <summary>
3333
/// Suite of tests for the <see cref="RestClient"/> class
3434
/// </summary>
35-
[Category("Integration")]
35+
[TestFixture]
3636
public class RestClientTestFixture
3737
{
3838
private string baseUri;

SysML2.NET.Viewer.Tests/Services/Authentication/AuthenticationServiceTestFixture.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ namespace SysML2.NET.Viewer.Tests.Services.Authentication
3636
/// <summary>
3737
/// Suite of tests for the <see cref="AuthenticationService"/>
3838
/// </summary>
39-
[Category("Integration")]
4039
[TestFixture]
4140
public class AuthenticationServiceTestFixture
4241
{

0 commit comments

Comments
 (0)