mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
fix: 2019 tests work again (#3547)
This commit is contained in:
parent
629e50e4f9
commit
39211f9002
@ -75,8 +75,9 @@ public static void OnCompilationFinished(string assemblyPath, CompilerMessage[]
|
||||
return;
|
||||
}
|
||||
|
||||
// Should not run on the editor only assemblies
|
||||
if (assemblyPath.Contains("-Editor") || assemblyPath.Contains(".Editor"))
|
||||
// Should not run on the editor only assemblies (test ones still need to be weaved)
|
||||
if (assemblyPath.Contains("-Editor") ||
|
||||
(assemblyPath.Contains(".Editor") && !assemblyPath.Contains(".Tests")))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user