You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Avoid looking for tests in pluting content python site-packages folder
#rnx #rb trivial [CL 25966568 by Jerome Delattre in ue5-main branch]
This commit is contained in:
@@ -123,6 +123,11 @@ protected:
|
||||
// Scan all the found files, use only test_*.py file
|
||||
for (const FString& Filename : FilesInDirectory)
|
||||
{
|
||||
// Skip files from site-packages
|
||||
if (Filename.Contains(TEXT("/site-packages/")))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
OutBeautifiedNames.Add(ModuleName + TEXT(".") + BeautifyPath(Filename));
|
||||
OutFileNames.Add(Filename);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user