-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from camalot/feature/tests-revamp
feature/tests-revamp -> develop
- Loading branch information
Showing
105 changed files
with
2,931 additions
and
2,485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +0,0 @@ | ||
<# | ||
# | ||
# | ||
#> | ||
|
||
#$commitMessageRegex = "^\[deploy\:(pre-release|draft|release)\]$"; | ||
|
||
|
||
## Must come from master branch. | ||
## Must not have a PULL Request Number | ||
## Must match regex | ||
#if ( ($env:APPVEYOR_REPO_BRANCH -eq "master") -and ($env:APPVEYOR_REPO_COMMIT_MESSAGE -match $commitMessageRegex) ) { | ||
# $env:CI_DEPLOY_NUGET = $true; | ||
# $env:CI_DEPLOY_GITHUB = $true; | ||
# $env:CI_DEPLOY_FTP = $false; | ||
# $env:CI_DEPLOY_WebHook = $true; | ||
# $env:CI_DEPLOY_WebDeploy = $true; | ||
# $env:CI_DEPLOY_CodePlex = $false; | ||
# $env:CI_DEPLOY_WEBAPI_RELEASE = $false; | ||
# $env:CI_DEPLOY_PUSHBULLET = $true; | ||
# $env:CI_DEPLOY = $true; | ||
#} else { | ||
# # Do not assign a release number or deploy | ||
# $env:CI_DEPLOY_NUGET = $true; | ||
# $env:CI_DEPLOY_GITHUB_PRE = $true; | ||
# $env:CI_DEPLOY_GITHUB = $false; | ||
# $env:CI_DEPLOY_FTP = $false; | ||
# $env:CI_DEPLOY_WebHook = $false; | ||
# $env:CI_DEPLOY_WebDeploy = $false; | ||
# $env:CI_DEPLOY_CodePlex = $false; | ||
# $env:CI_DEPLOY_WEBAPI_RELEASE = $false; | ||
# $env:CI_DEPLOY_PUSHBULLET = $false; | ||
# $env:CI_DEPLOY = $false; | ||
#} | ||
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
choco install -y nuget.commandline --version 3.3.0; | ||
& choco install -y nuget.commandline -version 3.3.0; | ||
|
||
$env:PATH = "C:\ProgramData\chocolatey\lib\NuGet.CommandLine\tools;$env:PATH"; | ||
$env:PATH = "C:\ProgramData\chocolatey\lib\NuGet.CommandLine\tools\;C:\Python34;C:\Python34\Scripts\;$env:PATH"; | ||
|
||
& python -m pip install --upgrade pip; | ||
|
||
pip install codecov; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# /noshadow /nologo /notrait category=IntegrationTest | ||
|
||
& "${ENV:APPVEYOR_BUILD_FOLDER}\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe" -log:All -register:user -target:`"${ENV:APPVEYOR_BUILD_FOLDER}\packages\xunit.runner.console.2.1.0\tools\xunit.console.x86.exe`" -filter:`"+[Managed.Adb]* -[Managed.Adb]Managed.Adb.Properties.*`" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:`"${ENV:APPVEYOR_BUILD_FOLDER}\managed.adb.coverage.xml`" -targetargs:`"`\`"${ENV:APPVEYOR_BUILD_FOLDER}\Managed.Adb.Tests\bin\x86\Debug\Managed.Adb.Tests.dll`\`" -verbose -noshadow `"; | ||
|
||
codecov -f `"${ENV:APPVEYOR_BUILD_FOLDER}\managed.adb.coverage.xml`" -X gcov; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
**/.vs/* | ||
# Generated Version File: | ||
*/VersionAssemblyInfo.cs | ||
**/*.coverage.xml | ||
|
||
#nuget | ||
[pP]ackages/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.