/Cake.Storyteller

Wrapper around Storyteller 3 for Cake

Primary LanguageC#Apache License 2.0Apache-2.0

Cake.Storyteller

Build status

Storyteller 3 Alias for Cake

Installation

Install Storyteller tool and this addin

#tool "nuget:?package=Storyteller&version=3.0.1"
#addin "Cake.Storyteller"

Usage

Task("StOpen")
    .Does(() => {
        StorytellerOpen("src/Cake.StoryTeller.Integration", new StorytellerSettings{
            Timeout = 300,
            Profile = "Phantom"
        });
    });

Task("StRun")
    .Does(() => {
        StorytellerRun("src/Cake.StoryTeller.Integration", new StorytellerSettings{
            Timeout = 300,
            Profile = "Phantom",
            Retries = 1
        });
    });

Settings

Available settings are:

string ResultsPath
string Workspace
string ExcludeTags
bool Open
string Csv
string Json
string Dump
string Build
string Profile
int Timeout
string Lifecycle
bool TeamCity
string Config
int Retries

Refer to Storyteller Documentation