* Add configuration/code to not run certain tests based on variables/release builds * Applied longrunning testAttribute to the worst offenders (>200ms on my machine) * Fix yaml notation * split up windows/non windows test runs * Added supression for moved tests * Fix yaml validation issues * Change yaml string parameter null value to empty string * Convert empty strings to whitespace strings * Rename and cleanup some paramater to better reflect why we use them * Nightly build test * Change nightly build authentication type * template paramater fix * Update nightly pipeline name --------- Co-authored-by: Sven Geusens <sge@umbraco.dk>
18 lines
1022 B
XML
18 lines
1022 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- https://learn.microsoft.com/en-us/dotnet/fundamentals/package-validation/diagnostic-ids -->
|
|
<Suppressions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
<Suppression>
|
|
<DiagnosticId>CP0001</DiagnosticId>
|
|
<Target>T:Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Services.ContentServiceTests</Target>
|
|
<Left>lib/net6.0/Umbraco.Tests.Integration.dll</Left>
|
|
<Right>lib/net6.0/Umbraco.Tests.Integration.dll</Right>
|
|
<IsBaselineSuppression>true</IsBaselineSuppression>
|
|
</Suppression>
|
|
<Suppression>
|
|
<DiagnosticId>CP0002</DiagnosticId>
|
|
<Target>M:Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Persistence.Repositories.MediaRepositoryTest.QueryMedia_ContentTypeAliasFilter</Target>
|
|
<Left>lib/net6.0/Umbraco.Tests.Integration.dll</Left>
|
|
<Right>lib/net6.0/Umbraco.Tests.Integration.dll</Right>
|
|
<IsBaselineSuppression>true</IsBaselineSuppression>
|
|
</Suppression>
|
|
</Suppressions> |