Skip to main content

Library for creating evergreen configurations

Project description

shrub.py

A python based Evergreen project config generation library

PyPI - Python Version PyPI version

Overview

Based on shrub, shrub.py is a library for programatically building Evergreen project configurations described here.

Example

The following snippet will create a set of parallel tasks reported under a single display task. It would generate json used by generate.tasks:

from shrub.v3.evg_task import EvgTask, EvgTaskDependency
from shrub.v3.evg_build_variant import BuildVariant, DisplayTask
from shrub.v3.evg_command import FunctionCall
from shrub.v3.evg_project import EvgProject
from shrub.v3.shrub_service import ShrubService


n_tasks = 10
def define_task(index):
    name = f"task_name_{index}"

    return EvgTask(
        name=name,
        commands=[
            FunctionCall(func="do setup"),
            FunctionCall(
                func="run test generator",
                vars={"parameter_1": "value 1", "parameter_2": "value 2"}
            ),
            FunctionCall(func="run tests")
        ],
        depends_on=[EvgTaskDependency(name="compile")]
    )

tasks = [define_task(i) for i in range(n_tasks)]
display_task = DisplayTask(name="test_suite", execution_tasks=[t.name for t in tasks])
variant = BuildVariant(name="linux-64", tasks=[], display_tasks=[display_task])
project = EvgProject(buildvariants=[variant], tasks=tasks)

print(ShrubService.generate_json(project))

Run tests

poetry run pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shrub_py-3.3.2.tar.gz (33.5 kB view details)

Uploaded Source

Built Distribution

shrub_py-3.3.2-py3-none-any.whl (40.0 kB view details)

Uploaded Python 3

File details

Details for the file shrub_py-3.3.2.tar.gz.

File metadata

  • Download URL: shrub_py-3.3.2.tar.gz
  • Upload date:
  • Size: 33.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.9.2 Linux/5.15.0-1021-aws

File hashes

Hashes for shrub_py-3.3.2.tar.gz
Algorithm Hash digest
SHA256 9f283498cc2b29558f06ca68c5ada56b14dc641d5c6dc784f645e329f721363a
MD5 2c898fbaa2660eeb245aa550faa39fc3
BLAKE2b-256 e9fcebeff7958047294d155717b4962744b59b543bce61568f1c794b1b79558a

See more details on using hashes here.

Provenance

File details

Details for the file shrub_py-3.3.2-py3-none-any.whl.

File metadata

  • Download URL: shrub_py-3.3.2-py3-none-any.whl
  • Upload date:
  • Size: 40.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.9.2 Linux/5.15.0-1021-aws

File hashes

Hashes for shrub_py-3.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e96c2ef0dba811feb052daca46f4406b43ca924f9d9f5bb1edfabf858b8eb5a8
MD5 d56adbd7e94051d35bb24e4cdf602017
BLAKE2b-256 b7871f62934468147a2050032b0a569da6f86597c4604429c89bf0744c46deb8

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page