forked from 6bee/Remote.Linq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (26 loc) · 1.03 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
image: Visual Studio 2019
branches:
except:
- experimental
init:
- git config --global core.autocrlf true
version: 1.0.{build}
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
before_build:
- dotnet --info
- dotnet restore Remote.Linq.sln
- dotnet restore Remote.Linq.Samples.sln
- dotnet tool install --global codecov.tool
build_script:
- dotnet build Remote.Linq.sln
- dotnet build Remote.Linq.Samples.sln
test_script:
- dotnet test test\Remote.Linq.Tests
- dotnet test test\Remote.Linq.EntityFramework.Tests
- dotnet test test\Remote.Linq.EntityFrameworkCore.Tests
after_test:
- dotnet test test\Remote.Linq.Tests -f netcoreapp3.1 --collect:"XPlat Code Coverage" --settings coverlet.runsettings --results-directory TestResults
- dotnet test test\Remote.Linq.EntityFrameworkCore.Tests -f netcoreapp3.1 --collect:"XPlat Code Coverage" --settings coverlet.efcore.runsettings --results-directory TestResults
- codecov -f **\coverage.cobertura.xml