diff options
author | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-08-14 14:47:23 -0400 |
---|---|---|
committer | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-08-14 14:47:23 -0400 |
commit | 649f06759d933f4aacdfbb302e845e2bcb5e7641 (patch) | |
tree | 8851c11251706c61680b4b29b231c5dec44a2c57 /test/requirements.py | |
parent | 2c9ff9115c72f25cfcc500cd9f42e1035e54e582 (diff) | |
download | sqlalchemy-649f06759d933f4aacdfbb302e845e2bcb5e7641.tar.gz |
Added support for postgres_relkind.
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py index e8705d145..927c94bfb 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -717,6 +717,14 @@ class DefaultRequirements(SuiteRequirements): ) @property + def postgresql_test_dblink(self): + return skip_if( + lambda config: not config.file_config.has_option( + 'sqla_testing', 'postgres_test_db_link'), + "postgres_test_db_link option not specified in config" + ) + + @property def percent_schema_names(self): return skip_if( [ |