We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e49e0ae commit d29b23bCopy full SHA for d29b23b
Flow.Launcher.Test/Plugins/ExplorerTest.cs
@@ -10,6 +10,10 @@
10
11
namespace Flow.Launcher.Test.Plugins
12
{
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>
17
[TestFixture]
18
public class ExplorerTest
19
appveyor.yml
@@ -4,6 +4,7 @@ init:
4
- ps: |
5
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
6
$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
8
9
assembly_info:
patch: true
0 commit comments