mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix failing test due to Windows Search service not running
This commit is contained in:
parent
e49e0ae2dc
commit
d29b23b53c
2 changed files with 5 additions and 0 deletions
|
|
@ -10,6 +10,10 @@ using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Flow.Launcher.Test.Plugins
|
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]
|
[TestFixture]
|
||||||
public class ExplorerTest
|
public class ExplorerTest
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ init:
|
||||||
- ps: |
|
- ps: |
|
||||||
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
|
$version = new-object System.Version $env:APPVEYOR_BUILD_VERSION
|
||||||
$env:flowVersion = "{0}.{1}.{2}" -f $version.Major, $version.Minor, $version.Build
|
$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:
|
assembly_info:
|
||||||
patch: true
|
patch: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue