Skip to content

Commit

Permalink
Exclude unittest files from DupFinder.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Oct 5, 2015
1 parent 2355675 commit da5598d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 37,839 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -200,3 +200,4 @@ opencoverCoverage.xml
tools/fxcop-report.html
tools/FxCop-badge.svg
FxCop-badge.svg
tools/dupFinderReport.xml
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ SampleProject


####Code quality
![FxCop](http://badgessharp.apphb.com/api/badge?repositoryUrl=https://github.com/giacomelli/SampleProject&badge=FxCop)
![StyleCop](http://badgessharp.apphb.com/api/badge?repositoryUrl=https://github.com/giacomelli/SampleProject&badge=StyleCop)
[![FxCop](http://badgessharp.apphb.com/api/badge?repositoryUrl=https://github.com/giacomelli/SampleProject&badge=FxCop)](https://ci.appveyor.com/project/giacomelli/SampleProject/build/artifacts)
[![StyleCop](http://badgessharp.apphb.com/api/badge?repositoryUrl=https://github.com/giacomelli/SampleProject&badge=StyleCop)](https://ci.appveyor.com/project/giacomelli/SampleProject/build/artifacts)
[![DupFinder](http://badgessharp.apphb.com/api/badge?repositoryUrl=https://github.com/giacomelli/SampleProject&badge=DupFinder)](https://ci.appveyor.com/project/giacomelli/SampleProject/build/artifacts)

####License
Expand Down
15 changes: 10 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ after_build:
.\tools\BadgesSharp\BadgesSharpCmd.exe "https://github.com/giacomelli/SampleProject" StyleCop ".\tools\stylecop-report.violations.xml"
C:\ProgramData\chocolatey\lib\resharper-clt.portable\tools\dupfinder.exe /output=.\tools\dupFinderReport.xml /show-text .\src\SampleProject.sln
C:\ProgramData\chocolatey\lib\resharper-clt.portable\tools\dupfinder.exe /output=.\tools\dupFinder-Report.xml /show-text /exclude=**\*Test.cs .\src\SampleProject.sln
.\tools\BadgesSharp\BadgesSharpCmd.exe "https://github.com/giacomelli/SampleProject" DupFinder .\tools\dupFinderReport.xml
.\tools\BadgesSharp\BadgesSharpCmd.exe "https://github.com/giacomelli/SampleProject" DupFinder .\tools\dupFinder-Report.xml
test_script:
- cmd: >-
Expand All @@ -45,6 +45,11 @@ after_test:
.\tools\BadgesSharp\BadgesSharpCmd.exe "https://github.com/giacomelli/SampleProject" SpecFlow %ERRORLEVEL%
artifacts:
- path: .\tools\dupFinderReport.xml
name: DupFinderReport
artifacts:
- path: .\tools\fxcop-report.xml
name: FxCop-Report
- path: .\tools\stylecop-report.xml
name: StyleCop-Report
- path: .\tools\dupFinder-eport.xml
name: DupFinder-report

Loading

0 comments on commit da5598d

Please sign in to comment.