Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test run serialization feature #4126

Merged
merged 10 commits into from
Nov 28, 2022
Prev Previous commit
address PR feedback
  • Loading branch information
Marco Rossignoli committed Nov 28, 2022
commit f5e96a89be078740bc7efd8ad146d2aca14654ae
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ private bool RunTestInternalWithExecutors(IEnumerable<Tuple<Uri, string>> execut
{
// If real executor is wrapped by a decorator we get the real decorated type
TypeInfo executorTypeInfo =
(executor.Value is SerialTestRunDecorator serializeTestRunDecorator)
? serializeTestRunDecorator.OriginalTestExecutor.GetType().GetTypeInfo()
(executor.Value is SerialTestRunDecorator serialTestRunDecorator)
? serialTestRunDecorator.OriginalTestExecutor.GetType().GetTypeInfo()
: executor.Value.GetType().GetTypeInfo();

var executorLocation = executorTypeInfo.Assembly.GetAssemblyLocation();
Expand Down