Commit fa38daa 1 parent 01292d1 commit fa38daa Copy full SHA for fa38daa
File tree 2 files changed +8
-3
lines changed
Atlas.Auto.Tests/Tests/RepeatSearch
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,20 @@ namespace Atlas.Auto.Tests.Tests.RepeatSearch;
6
6
7
7
/// <summary>
8
8
/// Tests that cover happy paths of Atlas repeat search.
9
+ /// Adult and cord test have been split into separate test categories to allow for parallel execution on the test pipeline.
9
10
/// </summary>
10
11
[ TestFixture ]
11
12
[ Parallelizable ( ParallelScope . All ) ]
12
- [ Category ( $ "{ nameof ( RepeatSearch_HappyPathTests ) } ") ]
13
13
// ReSharper disable once InconsistentNaming
14
14
internal class RepeatSearch_HappyPathTests : RepeatSearchTestBase
15
15
{
16
- public RepeatSearch_HappyPathTests ( ) : base ( nameof ( RepeatSearch_HappyPathTests ) )
16
+ private const string TestCategoryPrefix = nameof ( RepeatSearch_HappyPathTests ) ;
17
+
18
+ public RepeatSearch_HappyPathTests ( ) : base ( TestCategoryPrefix )
17
19
{
18
20
}
19
21
22
+ [ Category ( $ "{ TestCategoryPrefix } _Adult") ]
20
23
[ Test ]
21
24
public async Task RepeatSearch_Donor_10_10_IdentifiedExpectedChanges ( )
22
25
{
@@ -27,6 +30,7 @@ public async Task RepeatSearch_Donor_10_10_IdentifiedExpectedChanges()
27
30
test . Logger . LogCompletion ( testDescription ) ;
28
31
}
29
32
33
+ [ Category ( $ "{ TestCategoryPrefix } _Cord") ]
30
34
[ Test ]
31
35
public async Task RepeatSearch_Cord_4_8_IdentifiedExpectedChanges ( )
32
36
{
Original file line number Diff line number Diff line change @@ -71,5 +71,6 @@ stages:
71
71
- job : Search_HappyPathTests
72
72
- job : Search_ExceptionPathTests
73
73
- job : Scoring_HappyPathTests
74
- - job : RepeatSearch_HappyPathTests
74
+ - job : RepeatSearch_HappyPathTests_Adult
75
+ - job : RepeatSearch_HappyPathTests_Cord
75
76
- job : RepeatSearch_ExceptionPathTests
You can’t perform that action at this time.
0 commit comments