* 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>
14 lines
366 B
C#
14 lines
366 B
C#
namespace Umbraco.Cms.Tests.Common;
|
|
|
|
public static class TestConstants
|
|
{
|
|
/// <summary>
|
|
/// Used for TestCategories, they are designed to be used in an exclusion filter pattern
|
|
/// </summary>
|
|
public static class Categories
|
|
{
|
|
public const string LongRunning = "LongRunning";
|
|
public const string NonCritical = "NonCritical";
|
|
}
|
|
}
|