include convention tests in CI script

This commit is contained in:
Brendan Forster
2014-02-20 21:35:53 +11:00
parent afb028a2fa
commit 14de4a6edf
+8
View File
@@ -100,6 +100,14 @@ if ($LastExitCode -ne 0) {
Dump-Error($output)
}
Write-Output "Running convention tests..."
Write-Output ""
$output = & .\tools\FAKE.Core\tools\Fake.exe "build.fsx" "target=ConventionTests" "buildMode=Release"
if ($LastExitCode -ne 0) {
Dump-Error($output)
}
Write-Output "Running integration tests..."
Write-Output ""
$output = & .\tools\FAKE.Core\tools\Fake.exe "build.fsx" "target=IntegrationTests" "buildMode=Release"