diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-09-17 17:35:55 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-09-17 17:35:55 +0000 |
| commit | 5a0dcb483161eaff473fa8ab1cdfa2fa5c433f10 (patch) | |
| tree | c26e762e2bebcc2ad632eda038f0be146eb11abc /test/dialect/mysql | |
| parent | a3884f36f691df81fb5a1c795fe7ecc0c83507b6 (diff) | |
| parent | 11eecfacb7b36c209c1ad726f5e5b7525860977b (diff) | |
| download | sqlalchemy-5a0dcb483161eaff473fa8ab1cdfa2fa5c433f10.tar.gz | |
Merge "Add `asyncmy` support"
Diffstat (limited to 'test/dialect/mysql')
| -rw-r--r-- | test/dialect/mysql/test_types.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 0d466e26d..7bdf6f8ce 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -549,7 +549,7 @@ class TypeRoundTripTest(fixtures.TestBase, AssertsExecutionResults): ([0, 0, 0, 0, i, i, i, i], None), ([0, 0, 0, 0, 0, j, j, j], None), ([0, 0, 0, 0, 0, 0, k, k], None), - ([0, 0, 0, 0, 0, 0, 0, l], None), + ([0, 0, 0, 0, 0, 0, 0, l], None, testing.fails_if("+asyncmy")), argnames="store, expected", ) def test_bit_50_roundtrip(self, connection, bit_table, store, expected): @@ -569,7 +569,7 @@ class TypeRoundTripTest(fixtures.TestBase, AssertsExecutionResults): ([0, 0, 0, 0, i, i, i, i], None), ([0, 0, 0, 0, 0, j, j, j], None), ([0, 0, 0, 0, 0, 0, k, k], None), - ([0, 0, 0, 0, 0, 0, 0, l], None), + ([0, 0, 0, 0, 0, 0, 0, l], None, testing.fails_if("+asyncmy")), argnames="store, expected", ) def test_bit_50_roundtrip_reflected( |
