Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 747 Bytes

File metadata and controls

39 lines (25 loc) · 747 Bytes

build

Collect tasks, execute them, and report the results.

Usage

pytask build [OPTIONS] [PATHS]

pytask without a subcommand runs build by default.

Examples

# Run the project in the current directory.
pytask build

# Select tasks by expression.
pytask build -k random_data

# Show what would run without executing tasks.
pytask build --dry-run

Arguments

--8<-- "docs/source/_static/md/commands/build-arguments.md"

Options

--8<-- "docs/source/_static/md/commands/build-options.md"

Related