|
25 | 25 | import pytest |
26 | 26 | import pytz |
27 | 27 | import sqlalchemy |
28 | | -import sqlalchemy.sql.sqltypes |
29 | | -import sqlalchemy.testing.suite.test_types |
30 | 28 | from sqlalchemy import and_ |
| 29 | +import sqlalchemy.sql.sqltypes |
31 | 30 | from sqlalchemy.testing import config, util |
32 | 31 | from sqlalchemy.testing.assertions import eq_ |
33 | | -from sqlalchemy.testing.suite import * # noqa |
34 | 32 | from sqlalchemy.testing.suite import ( |
35 | | - Column, |
36 | | - DistinctOnTest, |
37 | | - HasIndexTest, |
38 | | - IdentityAutoincrementTest, |
39 | 33 | Integer, |
40 | 34 | LongNameBlowoutTest, |
41 | 35 | PostCompileParamsTest, |
42 | 36 | QuotedNameArgumentTest, |
43 | | - String, |
44 | | - Table, |
| 37 | +) |
| 38 | +from sqlalchemy.testing.suite import ( |
45 | 39 | WindowFunctionTest, |
46 | 40 | bindparam, |
47 | 41 | exists, |
48 | 42 | select, |
49 | 43 | testing, |
50 | 44 | ) |
| 45 | +from sqlalchemy.testing.suite import * # noqa |
51 | 46 | from sqlalchemy.testing.suite import CTETest as _CTETest |
52 | | -from sqlalchemy.testing.suite import DifficultParametersTest as _DifficultParametersTest |
| 47 | +from sqlalchemy.testing.suite import Column |
| 48 | +from sqlalchemy.testing.suite import DistinctOnTest |
53 | 49 | from sqlalchemy.testing.suite import ExistsTest as _ExistsTest |
54 | | -from sqlalchemy.testing.suite import FetchLimitOffsetTest as _FetchLimitOffsetTest |
| 50 | +from sqlalchemy.testing.suite import HasIndexTest, IdentityAutoincrementTest |
55 | 51 | from sqlalchemy.testing.suite import InsertBehaviorTest as _InsertBehaviorTest |
| 52 | +from sqlalchemy.testing.suite import String, Table |
| 53 | +from sqlalchemy.testing.suite import DifficultParametersTest as _DifficultParametersTest |
| 54 | +from sqlalchemy.testing.suite import FetchLimitOffsetTest as _FetchLimitOffsetTest |
56 | 55 | from sqlalchemy.testing.suite import SimpleUpdateDeleteTest as _SimpleUpdateDeleteTest |
57 | 56 | from sqlalchemy.testing.suite import ( |
58 | 57 | TimestampMicrosecondsTest as _TimestampMicrosecondsTest, |
|
63 | 62 | ComponentReflectionTestExtra, |
64 | 63 | HasTableTest, |
65 | 64 | ) |
| 65 | +import sqlalchemy.testing.suite.test_types |
66 | 66 | from sqlalchemy.testing.suite.test_types import ArrayTest |
67 | 67 |
|
68 | 68 | if packaging.version.parse(sqlalchemy.__version__) >= packaging.version.parse("2.0"): |
|
0 commit comments