Metadata-Version: 2.1
Name: sql-test-kit
Version: 0.2.3
Summary: Framework for testing SQL queries
Author: victorlandeau
Author-email: vlandeau@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: db-dtypes[bigquery] (>=1.1.1,<2.0.0)
Requires-Dist: google-cloud-bigquery[bigquery] (>=3.10.0,<4.0.0)
Requires-Dist: pandas (>=2.0.0,<3.0.0)
Description-Content-Type: text/markdown

# sql-test-kit

This is a framework for testing SQL queries.
It works by directly running the queries against the targeted engine, thus being robust to any change in the
corresponding SQL dialect.
Moreover, it is currently focused on interpolating test data directly inside the SQL queries, making the test much
quicker than if it were creating temporary tables.

# Application example

You can find an example in applying the framework to bigquery in the [test_bigquery](tests/test_bigquery.py) file.

