-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
38 lines (29 loc) · 1.13 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: 0.1.{build}
image: Visual Studio 2019
environment:
COVERALLS_REPO_TOKEN:
secure: xSBmCtrGxxcXGKHbsHZp405e+uUajre5pNH/esifQvEzLpLmcHuH2vMIkAURqWyY
matrix:
fast_finish: true
install:
- cmd: dotnet tool install -g coveralls.net --version 1.0.0
- cmd: dotnet restore
configuration: Release
build:
parallel: true
project: CharGen.sln
publish_wap_xcopy: true
verbosity: minimal
test_script:
- cmd: dotnet test CharGen.UnitTests -c Release -v q --no-build /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude=\"[*]*.Program,[*]*.Startup,[*]*.*Controller,[*]*.*Model,[*]*.*DBSetup,[*]*.GlobalExceptionFilter,[xunit.*]*\"
after_test:
- cmd: csmacnz.Coveralls.exe --opencover -i CharGen.UnitTests/coverage.opencover.xml --useRelativePaths
- cmd: dotnet publish ADD2CharacterService -c Release -o ./add2publish
- cmd: dotnet publish DD35CharacterService -c Release -o ./dd35publish
artifacts:
- path: ADD2CharacterService/add2publish
name: add2publish
- path: DD35CharacterService/dd35publish
name: dd35publish
- path: stresults.htm
name: StorytellerResults.htm