Skip to content

Commit

Permalink
Added workaround, delete integration tests after build
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbra committed Oct 26, 2017
1 parent a64fdea commit 8a51d3a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ If (!(Test-Path $LOGDIR)) {
"`n * Building and packaging"
msbuild /t:"Build;Pack" /p:DropFolder=$CODEDROP /p:Version="$($gitVersion.FullSemVer)" /p:NoPackageAnalysis=true /nologo /v:m /fl /flp:"LogFile=$LOGDIR\msbuild.log;Verbosity=n" /p:Configuration=Build /p:Platform="Any CPU"

# Workaround until test filter is updated - remove then.
If ($onAppVeyor) {
dir -r product/roundhouse.tests.integration -i roundhouse.tests.integration.dll | % {
rm -fo $_;
}
}

# AppVeyor runs the test automagically, no need to run explicitly with nunit-console.exe.
# But we want to run the tests on localhost too.
If (! $onAppVeyor) {
Expand Down

0 comments on commit 8a51d3a

Please sign in to comment.