Skip to content

Commit d29b23b

Browse files
committed
fix failing test due to Windows Search service not running
1 parent e49e0ae commit d29b23b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Flow.Launcher.Test/Plugins/ExplorerTest.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
namespace Flow.Launcher.Test.Plugins
1212
{
13+
/// <summary>
14+
/// These tests require the use of CSearchManager class from Microsoft.Search.Interop.
15+
/// Windows Search service needs to be running to complete the tests
16+
/// </summary>
1317
[TestFixture]
1418
public class ExplorerTest
1519
{

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ init:
44
- ps: |
55
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
66
$env:flowVersion = "{0}.{1}.{2}" -f $version.Major, $version.Minor, $version.Build
7+
- sc config WSearch start= auto # Starts Windows Search service- Needed for running ExplorerTest
78

89
assembly_info:
910
patch: true

0 commit comments

Comments
 (0)