remove where we try to run tests for RT

This commit is contained in:
half-ogre
2013-09-27 12:45:26 -07:00
parent d97a889057
commit dcc7c12dd8

View File

@@ -112,17 +112,6 @@ if ($result.ExitCode -eq 0) {
}
Write-Output ""
Write-Output "Running Octokit.Tests..."
$result = Run-XUnit OctokitRT.Tests 120
if ($result.ExitCode -eq 0) {
# Print out the test result summary.
Write-Output $result.Output[-1]
} else {
$exitCode = $result.ExitCode
Write-Output $result.Output
}
Write-Output ""
Write-Output "Running Octokit.Tests.Integration..."
$result = Run-XUnit Octokit.Tests.Integration 180
if ($result.ExitCode -eq 0) {