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"