Releases: tinybirdco/pytest-tinybird
Releases · tinybirdco/pytest-tinybird
v0.3.0
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 usingwait=false
, the data will eventually reach the database while usingwait=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
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
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`