fix failing test due to Windows Search service not running

This commit is contained in:
Jeremy Wu 2020-06-12 21:19:55 +10:00
parent e49e0ae2dc
commit d29b23b53c
2 changed files with 5 additions and 0 deletions

View file

@ -10,6 +10,10 @@ using System.Collections.Generic;
namespace Flow.Launcher.Test.Plugins
{
/// <summary>
/// These tests require the use of CSearchManager class from Microsoft.Search.Interop.
/// Windows Search service needs to be running to complete the tests
/// </summary>
[TestFixture]
public class ExplorerTest
{

View file

@ -4,6 +4,7 @@ init:
- ps: |
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
$env:flowVersion = "{0}.{1}.{2}" -f $version.Major, $version.Minor, $version.Build
- sc config WSearch start= auto # Starts Windows Search service- Needed for running ExplorerTest
assembly_info:
patch: true