15 строки
738 B
YAML
15 строки
738 B
YAML
language: csharp
|
|
solution: WhoisParsers.sln
|
|
install:
|
|
- nuget restore WhoisParsers.sln
|
|
- nuget install NUnit.Runners -Version 3.2.1 -OutputDirectory testrunner
|
|
script:
|
|
- msbuild /p:Configuration=Nunit-Net45 WhoisParsers.sln
|
|
- cd WhoisUtils.Tests
|
|
- mono ../testrunner/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./bin/Nunit/Microsoft.Geolocation.Whois.Utils.Tests.dll
|
|
- cd ..
|
|
- cd WhoisDatabaseParsers.Tests
|
|
- mono ../testrunner/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./bin/Nunit/Microsoft.Geolocation.Whois.Parsers.Tests.dll
|
|
- cd ..
|
|
- cd WhoisNormalization.Tests
|
|
- mono ../testrunner/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./bin/Nunit/Microsoft.Geolocation.Whois.Normalization.Tests.dll |