Set a couple extra test runner parameters for main project
This commit is contained in:
parent
9fb98ef5ef
commit
a2bcbbdfb8
|
@ -5,6 +5,7 @@
|
||||||
<Import Project="../TestProjects.props" />
|
<Import Project="../TestProjects.props" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<DefineConstants Condition=" '$(ContinuousIntegrationBuild)' == 'true' ">$(DefineConstants);SKIP_PLATFORM_TESTS</DefineConstants>
|
<DefineConstants Condition=" '$(ContinuousIntegrationBuild)' == 'true' ">$(DefineConstants);SKIP_PLATFORM_TESTS</DefineConstants>
|
||||||
|
<RunSettingsFilePath>$(MSBuildProjectDirectory)/../MainSln.runsettings</RunSettingsFilePath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="$(ProjectDir)../BizHawk.Client.Common/BizHawk.Client.Common.csproj" />
|
<ProjectReference Include="$(ProjectDir)../BizHawk.Client.Common/BizHawk.Client.Common.csproj" />
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RunSettings>
|
||||||
|
<RunConfiguration>
|
||||||
|
<TestSessionTimeout>300000</TestSessionTimeout> <!-- milliseconds (300k = 5 min) -->
|
||||||
|
<TreatNoTestsAsError>true</TreatNoTestsAsError> <!-- there's an error message either way, but this makes it `exit(1)` -->
|
||||||
|
</RunConfiguration>
|
||||||
|
</RunSettings>
|
Loading…
Reference in New Issue