Docker マシンで Specflow+ Runner を並行して使用してテストを並行して実行しようとしています。コンソールには、すべてのテストが実行されたと表示されますが、TestExecution.json と結果の LivingDoc には小さなサブセットのテスト結果しか含まれておらず、残りはスキップされています。レポートがこれを行っている理由がわかりません。
ルート ディレクトリの Default.srprofile:
<?xml version="1.0" encoding="utf-8"?>
<TestProfile xmlns="http://www.specflow.org/schemas/plus/TestProfile/1.5">
<Settings projectName="TestHarness" />
<Execution retryFor="None" stopAfterFailures="0" testThreadCount="3" testSchedulingMode="Random" apartmentState="MTA"/>
<!-- For collecting by a SpecRun server update and enable the following element. For using the
collected statistics, set testSchedulingMode="Adaptive" attribute on the <Execution> element.
<Server serverUrl="http://specrunserver:6365" publishResults="true" />
-->
<TestAssemblyPaths>
<TestAssemblyPath>TestHarness.dll</TestAssemblyPath>
</TestAssemblyPaths>
<Report disable="true" />
<DeploymentTransformation>
<Steps>
<!-- sample config transform to change the connection string-->
<!--<ConfigFileTransformation configFile="App.config">
<Transformation>
<![CDATA[<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<connectionStrings>
<add name="MyDatabase" connectionString="Data Source=.;Initial Catalog=MyDatabaseForTesting;Integrated Security=True"
xdt:Locator="Match(name)" xdt:Transform="SetAttributes(connectionString)" />
</connectionStrings>
</configuration>
]]>
</Transformation>
</ConfigFileTransformation>-->
</Steps>
</DeploymentTransformation>
</TestProfile>