Skip to main content

A pytest plugin to report test results to tinybird

Project description

pytest-tinybird

A pytest plugin to report test results to Tinybird. At the end of every run, this plugin posts results using the Tinybird Events API.

PyPI version Passed Top test passed

Requirements

Installation

pypi install package: https://pypi.org/project/pytest-tinybird/

You can install the plugin with the following bash command:

  $ pip install pytest-tinybird

Usage

You just need your Tinybird account and a Token with append permissions

Set these env variables:

export TINYBIRD_URL=<https://api.tinybird.co|https://api.us-east.tinybird.co>   # depends on your region
export TINYBIRD_DATASOURCE=<datasource_name>  # will be created with first results posted
export TINYBIRD_TOKEN=<token_with_append_permissions>

Then run pytest with --report-to-tinybird.

$ pytest tests --report-to-tinybird

CI execution info can also be set using some env variables. These are from GitLab:

CI_COMMIT_SHA
CI_COMMIT_BRANCH
CI_JOB_ID
CI_JOB_NAME
CI_JOB_URL

If you are not using GitLab, you will need to set them manually. For instance, for GitHub actions you can check our current GitHub actions workflow.

Data Source details

The pytest-tinybird plugin creates and sends report objects via the Events API with this structure:

{
	'date': now,
	'commit': self.commit,
	'branch': self.branch,
	'job_id': self.job_id,
	'job_url': self.job_url,
	'job_name': self.job_name,
	'test_nodeid': test.nodeid,
	'test_name': test.head_line,
	'test_part': test.when,
	'duration': test.duration,
	'outcome': test.outcome
}

There are also additional optional values that can be set for multi-repository and multi-workflow setups (e.g., in GitHub Actions):

{
    'repository': self.repository
    'workflow': self.workflow
}

To use these, you will need to set the CI_REPOSITORY_NAME and CI_WORKFLOW_NAME environment variables respectively.

When a report object is first sent to Tinybird, a Data Source with the following definition and schema is created:

TOKEN "pytest-executor-write" APPEND

SCHEMA >
    `commit` String `json:$.commit`,
    `branch` String `json:$.branch`,
    `date` DateTime `json:$.date`,
    `duration` Float32 `json:$.duration`,
    `job_id` String `json:$.job_id`,
    `job_name` String `json:$.job_name`,
    `job_url` String `json:$.job_url`,
    `outcome` LowCardinality(String) `json:$.outcome`,
    `test_name` String `json:$.test_name`,
    `test_nodeid` String `json:$.test_nodeid`,
    `test_part` LowCardinality(String) `json:$.test_part`

ENGINE MergeTree
ENGINE_PARTITION_KEY toYYYYMM(date)

You can also see the Data Source schema with this data sample from an API Endpoint created from the Data Source the pytest-tinybird plugin populates.

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

pytest_tinybird-0.5.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

pytest_tinybird-0.5.0-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest_tinybird-0.5.0.tar.gz.

File metadata

  • Download URL: pytest_tinybird-0.5.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytest_tinybird-0.5.0.tar.gz
Algorithm Hash digest
SHA256 1438a7c4b2adf0fd5afdf0dcab958761f3fb15dac6407fbc3889ffed88539e2d
MD5 2c4ebedf5b09e940e0025c68fbd92608
BLAKE2b-256 56a340698f9937db8bb7e02c1ede1c76bb54d592f0021dbde37b37e2bec38632

See more details on using hashes here.

File details

Details for the file pytest_tinybird-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_tinybird-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bd41f64338320615900b2fcb1e189f60ac4dde9e18364526af16d2d2a0d05621
MD5 6021a68d31898de683df8365d8ee445f
BLAKE2b-256 40bbbebcb9e621714cfdd0984cd0ee18417260eba14c577aa0017e3853198245

See more details on using hashes here.

Supported by

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