diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-05-17 19:57:01 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-05-17 19:57:01 -0400 |
| commit | d2bacad469c0b07cc707b563e37e835abcf96eb8 (patch) | |
| tree | 03b37e765e74bf6c01fa3287717f19d013f23ff7 /test/sql | |
| parent | 5957c212a770baf27bf659c4daac73cf320db7a9 (diff) | |
| download | sqlalchemy-d2bacad469c0b07cc707b563e37e835abcf96eb8.tar.gz | |
Skip for SQL Server on non-native boolean unconstrained
As SQL Server is now non-native boolean as of
I4765d2a2a00b0d14f50282603cc4d48d4739dac1 but uses the BIT
type, we need to constrain this test to continue to not
run against SQL Server.
Change-Id: I214faf2b788a0e8e10725622e3e71f3b70805533
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 5fbfcd2d8..3fdc6169f 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -2754,7 +2754,7 @@ class BooleanTest( ) - @testing.skip_if(lambda: testing.db.dialect.supports_native_boolean) + @testing.requires.non_native_boolean_unconstrained def test_nonnative_processor_coerces_integer_to_boolean(self): boolean_table = self.tables.boolean_table with testing.db.connect() as conn: |
