Skip to content

Releases: tinybirdco/pytest-tinybird

v0.3.0

29 Aug 09:05
c9dd6d2
Compare
Choose a tag to compare

This new version contains:

  • You can now customize the timeout when doing appends to TInybird with the environment variable TINYBIRD_TIMEOUT ( by default 2)

  • You can also customize which wait strategy to use when appending data using /v0/events. When using wait=false, the data will eventually reach the database while using wait=true, we will wait until Tinybird acknowledges that the data has been inserted into the database. ( default wait=false)

You can find more information at https://www.tinybird.co/docs/api-reference/events-api#post-v0events

Full Changelog: v0.2.0...v0.3.0

v0.2.0

02 Jun 15:32
Compare
Choose a tag to compare

Add branch to report

Datasource 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`

v0.1.0

02 Jun 15:11
Compare
Choose a tag to compare

Initial basic report.

Datasource schema:

    `commit` String `json:$.commit`,
    `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`