File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 99
1010build_script :
1111 - nuget restore money/cs-money.sln
12+ - msbuild money/cs-money.csproj /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:runCodeAnalysis=true /p:codeanalysislogfile=..\analysis.xml
1213
1314test_script :
14- - msbuild money/cs-money.csproj /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:runCodeAnalysis=true /p:codeanalysislogfile=..\analysis.xml
1515 - .\money\packages\OpenCover.4.6.519\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.4.1\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
1616
1717after_test :
Original file line number Diff line number Diff line change 1+ jobs :
2+ - job : Windows
3+ pool :
4+ vmImage : ' vs2015-win2012r2'
5+ steps :
6+ - bash : |
7+ wget -q https://testspace-client.s3.amazonaws.com/testspace-windows.zip
8+ # 7z x -y testspace-windows.zip
9+ unzip -q testspace-windows.zip
10+ testspace config url samples.testspace.com
11+ testspace -v
12+ displayName: 'Setup'
13+ - script : |
14+ nuget restore money/cs-money.sln
15+ msbuild money/cs-money.csproj /p:runCodeAnalysis=true /p:codeanalysislogfile=..\analysis.xml
16+ displayName: 'Build'
17+ - script : |
18+ .\money\packages\OpenCover.4.6.519\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.4.1\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
19+ displayName: 'Test'
20+ - script : |
21+ testspace analysis.xml [Tests]TestResult.xml coverage.xml
22+ condition: always()
23+ displayName: 'Push'
You can’t perform that action at this time.
0 commit comments