Skip to content

Latest commit

 

History

History
54 lines (46 loc) · 1.1 KB

README.md

File metadata and controls

54 lines (46 loc) · 1.1 KB

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