mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Try to fix alpine integration tests
This commit is contained in:
@@ -484,8 +484,9 @@ stages:
|
||||
cp -r -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Readarr/. ./bin/
|
||||
displayName: Move Package Contents
|
||||
- bash: |
|
||||
chmod a+x ${TESTSFOLDER}/test.sh
|
||||
${TESTSFOLDER}/test.sh ${OSNAME} Integration Test
|
||||
cd ${TESTSFOLDER}
|
||||
chmod a+x test.sh
|
||||
./test.sh ${OSNAME} Integration Test
|
||||
displayName: Run Integration Tests
|
||||
- task: PublishTestResults@2
|
||||
inputs:
|
||||
@@ -556,8 +557,9 @@ stages:
|
||||
cp -r -v ${BUILD_ARTIFACTSTAGINGDIRECTORY}/bin/Readarr/. ./bin/
|
||||
displayName: Move Package Contents
|
||||
- bash: |
|
||||
chmod a+x ${TESTSFOLDER}/test.sh
|
||||
${TESTSFOLDER}/test.sh Linux Integration Test
|
||||
cd ${TESTSFOLDER}
|
||||
chmod a+x test.sh
|
||||
./test.sh Linux Integration Test
|
||||
displayName: Run Integration Tests
|
||||
- task: PublishTestResults@2
|
||||
inputs:
|
||||
|
||||
@@ -22,4 +22,9 @@
|
||||
<ProjectReference Include="..\Readarr.Api.V1\Readarr.Api.V1.csproj" />
|
||||
<ProjectReference Include="..\NzbDrone.Test.Common\Readarr.Test.Common.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="integration.runsettings">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
11
src/NzbDrone.Integration.Test/integration.runsettings
Normal file
11
src/NzbDrone.Integration.Test/integration.runsettings
Normal file
@@ -0,0 +1,11 @@
|
||||
<RunSettings>
|
||||
<RunConfiguration>
|
||||
<!-- 0 = As many processes as possible, limited by number of cores on machine, 1 = Sequential (1 process), 2-> Given number of processes up to limit by number of cores on machine-->
|
||||
<MaxCpuCount>1</MaxCpuCount>
|
||||
<!-- Disables in-assembly parallel execution, applies to both MSTest and NUnit -->
|
||||
<DisableParallelization>true</DisableParallelization>
|
||||
</RunConfiguration>
|
||||
<NUnit>
|
||||
<NumberOfTestWorkers>1</NumberOfTestWorkers>
|
||||
</NUnit>
|
||||
</RunSettings>
|
||||
1
test.sh
1
test.sh
@@ -49,6 +49,7 @@ if [ "$TYPE" = "Unit" ]; then
|
||||
WHERE="$WHERE&Category!=IntegrationTest&Category!=AutomationTest"
|
||||
elif [ "$TYPE" = "Integration" ] || [ "$TYPE" = "int" ] ; then
|
||||
WHERE="$WHERE&Category=IntegrationTest"
|
||||
VSTEST_PARAMS="$VSTEST_PARAMS --settings:$TEST_DIR/integration.runsettings"
|
||||
elif [ "$TYPE" = "Automation" ] ; then
|
||||
WHERE="$WHERE&Category=AutomationTest"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user