From 14de4a6edf86aae8e62e4e08eb13828ecfe68646 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 20 Feb 2014 21:35:53 +1100 Subject: [PATCH] include convention tests in CI script --- script/cibuild.ps1 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/script/cibuild.ps1 b/script/cibuild.ps1 index 7c42cb11..27d82ad0 100644 --- a/script/cibuild.ps1 +++ b/script/cibuild.ps1 @@ -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"