package thirdparty

import "github.com/mmcloughlin/avo/tests/thirdparty"

Package thirdparty executes integration tests based on third-party packages that use avo.

Index

Types

type Package

type Package struct {
	ImportPath string     `json:"import_path"` // package import path
	Version    string     `json:"version"`     // git sha, tag or branch
	Generate   [][]string `json:"generate"`    // generate commands to run
	Dir        string     `json:"dir"`         // working directory for generate commands
	Test       string     `json:"test"`        // test path relative to repo root (if empty defaults to ./...)
}

Package defines an integration test based on a third-party package using avo.

func LoadPackages

func LoadPackages(r io.Reader) ([]Package, error)

LoadPackages loads a list of package configurations from JSON format.

func LoadPackagesFile

func LoadPackagesFile(filename string) ([]Package, error)

LoadPackagesFile loads a list of package configurations from a JSON file.

func (Package) CloneURL

func (p Package) CloneURL() string

CloneURL returns the git clone URL.

func (Package) Name

func (p Package) Name() string

Name returns the package name.

func (Package) TestPath

func (p Package) TestPath() string

TestPath returns the paths to run "go test" on, relative to the repository root.

Source Files

config.go

Version
v0.1.0
Published
Jan 4, 2021
Platform
darwin/amd64
Imports
4 packages
Last checked
1 month ago

Tools for package owners.