-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (25 loc) · 915 Bytes
/
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
image: Visual Studio 2015
configuration:
- Debug
- Release
matrix:
fast_finish: false
before_build:
nuget restore Rational.sln
build:
parallel: true
project: Rational.sln
verbosity: minimal
after_build:
- RationalNumberExample\bin\%configuration%\RationalNumberExample.exe
- nuget pack RationalNumber\RationalNumber.csproj
test:
assemblies:
- RationalNumberTest\bin\$(configuration)\RationalNumberTest.dll
after_test:
- nuget install NUnit.ConsoleRunner -Version 3.4.1 -OutputDirectory tools
- nuget install OpenCover -Version 4.6.519 -OutputDirectory tools
- tools\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:tools\NUnit.ConsoleRunner.3.4.1\tools\nunit3-console.exe -targetargs:"RationalNumberTest\bin\%configuration%\RationalNumberTest.dll" -register:user
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "results.xml"