diff options
author | Daniele Pizzoni <d.pizzoni@feedstock.com> | 2021-01-18 10:12:09 +0100 |
---|---|---|
committer | Daniele Pizzoni <d.pizzoni@feedstock.com> | 2021-01-18 10:12:09 +0100 |
commit | ac4415bb6a18f9d103bca31f56ecb6590bef15d6 (patch) | |
tree | e91b7cc5e1c6bd7c65a8951e6965c6f7e94f2f8c /test_databases.ini | |
parent | 3144beef56956c6cc932a1a404fca6e3440556df (diff) | |
download | yoyo-ac4415bb6a18f9d103bca31f56ecb6590bef15d6.tar.gz |
Add AWS Redshift support
- add a new backend for Redshift (no savepoint rollbacks, compatible row
lock insertion)
- skip nested transactions tests that fail due to missing savepoint support
- fix some test time durations to avoid failing on Redshift
- add a commented Redshift example line to test_databases.ini.
Diffstat (limited to 'test_databases.ini')
-rw-r--r-- | test_databases.ini | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test_databases.ini b/test_databases.ini index 6c07c7c..afe9ae8 100644 --- a/test_databases.ini +++ b/test_databases.ini @@ -2,3 +2,4 @@ sqlite = sqlite:///:memory: postgresql = postgresql://postgres@/yoyo_test mysql = mysql://root@/yoyo_test?unix_socket=/tmp/mysql.sock +#redshift = redshift://<user>:<password>@<subdomain>.redshift.amazonaws.com:5439/<dbname> |