Skip to content

Commit

Permalink
#15: don't skip tests and enable AppVeyor RDP access
Browse files Browse the repository at this point in the history
  • Loading branch information
christianspecht committed Mar 26, 2019
1 parent c38bc24 commit dc68575
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ image: Visual Studio 2017
branches:
only:
- master
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- ps: C:\projects\scm-backup\version-number.ps1
build_script:
- ps: C:\projects\scm-backup\build-release.ps1
test: off
on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
artifacts:
- path: release\scm-backup-*.zip
name: Release Version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal override HashSet<string> TestsToSkip

if (TestHelper.RunsOnAppVeyor())
{
t.Add("DoesntBackupWikiIfNotSet");
// t.Add("DoesntBackupWikiIfNotSet");
}

return t;
Expand Down

0 comments on commit dc68575

Please sign in to comment.