TeaPie 1.1.3

dotnet add package TeaPie --version 1.1.3
                    
NuGet\Install-Package TeaPie -Version 1.1.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TeaPie" Version="1.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TeaPie" Version="1.1.3" />
                    
Directory.Packages.props
<PackageReference Include="TeaPie" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TeaPie --version 1.1.3
                    
#r "nuget: TeaPie, 1.1.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=TeaPie&version=1.1.3
                    
Install TeaPie as a Cake Addin
#tool nuget:?package=TeaPie&version=1.1.3
                    
Install TeaPie as a Cake Tool

TeaPie - Library

NuGet License Build

The TeaPie library enables you to programmatically run and extend the functionality of the TeaPie CLI tool. It is ideal for integrating TeaPie into your own tools, CI/CD pipelines, or building custom extensions.

📖 Documentation

📚 Complete documentation of the public API is available in Wiki - API.

🚀 Features

✅ Programmatic test execution of .http files

Environment & variable injection

Scriptable initialization logic

✅ Customizable logging and reporting

📦 Installation

Install via NuGet

To integrate the package into your C# .NET project:

dotnet add package TeaPie

⚡ Quick Start

The access point to functionality is represented by ApplicationBuilder class. Here is an example of usage:

var appBuilder = ApplicationBuilder.Create(isCollectionRun: true);

var app = appBuilder
    .WithPath("path/to/collection")
    .WithTemporaryPath("custom/temp/folder")
    .WithLogging(LogLevel.Information, "path/to/log-file.log", LogLevel.Debug)
    .WithEnvironment("testlab")
    .WithEnvironmentFile("path/to/my/environment-file.json")
    .WithReportFile("path/to/report-file.xml")
    .WithInitializationScript("path/to/my/init-script.csx")
    .WithVariablesCaching(false)
    .WithDefaultPipeline(); // Default pipeline runs tests
    // .WithStructureExplorationPipeline() - to show structure
    .Build();

await app.Run(CancellationToken.None);

🤝 Contributing

We welcome contributions! Please check out the Contribution Guide for details on how to get involved.

📝 License

TeaPie is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 47 4/19/2025
1.1.2 48 4/19/2025
1.1.1 148 4/9/2025
1.1.0 152 4/8/2025
1.0.0 146 3/12/2025
0.0.1 148 3/11/2025