File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
RecommendationTools/UnitTests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,14 @@ public async Task ValidateS3RecommendationContentMatchesRepository()
4040 ZipFile . ExtractToDirectory ( "github.zip" , TempExtractDir ) ;
4141 var pathToRepoRecs = $@ "{ TempExtractDir } \porting-assistant-dotnet-datastore-master\recommendation";
4242 var pathToRepoTemplates = $@ "{ TempExtractDir } \porting-assistant-dotnet-datastore-master\Templates";
43+ var pathToTagConfigs = $@ "{ TempExtractDir } \porting-assistant-dotnet-datastore-master\tagconfigs";
4344
4445 var allRepoFilesToCheck = Directory . EnumerateFiles ( pathToRepoRecs , "*" , SearchOption . AllDirectories ) . ToList ( ) ;
4546 var allRepoTemplates = Directory . EnumerateFiles ( pathToRepoTemplates , "*" , SearchOption . AllDirectories ) . ToList ( ) ;
47+ var allRepoConfigs = Directory . EnumerateFiles ( pathToTagConfigs , "*" , SearchOption . AllDirectories ) . ToList ( ) ;
4648
4749 allRepoFilesToCheck . AddRange ( allRepoTemplates ) ;
50+ allRepoFilesToCheck . AddRange ( allRepoConfigs ) ;
4851
4952 Assert . Multiple ( async ( ) =>
5053 {
You can’t perform that action at this time.
0 commit comments