]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
trying different approaches to test layout. in this one, the testing modules
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 Sep 2012 06:37:33 +0000 (02:37 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 Sep 2012 06:37:33 +0000 (02:37 -0400)
commit20cdc64588b0f6ae52f8380c11d0ed848005377b
tree08f6cc8f82263f1e402c1c05c83b66a1f4b016ac
parent21cac5b598a83ef0e24423dc523629b475aa3af0
trying different approaches to test layout.  in this one, the testing modules
become an externally usable package but still remains within the main sqlalchemy parent package.
in this system, we use kind of an ugly hack to get the noseplugin imported outside of the
"sqlalchemy" package, while still making it available within sqlalchemy for usage by
third party libraries.
168 files changed:
lib/sqlalchemy/testing/__init__.py [moved from test/lib/testing.py with 77% similarity]
lib/sqlalchemy/testing/assertions.py [moved from test/lib/assertions.py with 99% similarity]
lib/sqlalchemy/testing/assertsql.py [moved from test/lib/assertsql.py with 100% similarity]
lib/sqlalchemy/testing/config.py [new file with mode: 0644]
lib/sqlalchemy/testing/engines.py [moved from test/lib/engines.py with 98% similarity]
lib/sqlalchemy/testing/entities.py [moved from test/lib/entities.py with 100% similarity]
lib/sqlalchemy/testing/exclusions.py [moved from test/lib/exclusions.py with 96% similarity]
lib/sqlalchemy/testing/fixtures.py [moved from test/lib/fixtures.py with 99% similarity]
lib/sqlalchemy/testing/pickleable.py [moved from test/lib/pickleable.py with 100% similarity]
lib/sqlalchemy/testing/plugin/__init__.py [moved from test/bootstrap/__init__.py with 100% similarity]
lib/sqlalchemy/testing/plugin/config.py [moved from test/bootstrap/config.py with 88% similarity]
lib/sqlalchemy/testing/plugin/noseplugin.py [moved from test/bootstrap/noseplugin.py with 90% similarity]
lib/sqlalchemy/testing/profiling.py [moved from test/lib/profiling.py with 98% similarity]
lib/sqlalchemy/testing/requirements.py [new file with mode: 0644]
lib/sqlalchemy/testing/schema.py [moved from test/lib/schema.py with 98% similarity]
lib/sqlalchemy/testing/suite/__init__.py [new file with mode: 0644]
lib/sqlalchemy/testing/suite/requirements.py [new file with mode: 0644]
lib/sqlalchemy/testing/suite/test_ddl.py [new file with mode: 0644]
lib/sqlalchemy/testing/suite/test_reflection.py [new file with mode: 0644]
lib/sqlalchemy/testing/suite/test_sequencing.py [new file with mode: 0644]
lib/sqlalchemy/testing/util.py [moved from test/lib/util.py with 98% similarity]
lib/sqlalchemy/testing/warnings.py [moved from test/lib/warnings.py with 96% similarity]
setup.cfg
sqla_nose.py
test/aaa_profiling/test_compiler.py
test/aaa_profiling/test_memusage.py
test/aaa_profiling/test_orm.py
test/aaa_profiling/test_pool.py
test/aaa_profiling/test_resultset.py
test/aaa_profiling/test_zoomark.py
test/aaa_profiling/test_zoomark_orm.py
test/base/test_dependency.py
test/base/test_events.py
test/base/test_except.py
test/base/test_inspect.py
test/base/test_utils.py
test/dialect/test_access.py
test/dialect/test_firebird.py
test/dialect/test_informix.py
test/dialect/test_maxdb.py
test/dialect/test_mssql.py
test/dialect/test_mxodbc.py
test/dialect/test_mysql.py
test/dialect/test_oracle.py
test/dialect/test_postgresql.py
test/dialect/test_pyodbc.py
test/dialect/test_sqlite.py
test/dialect/test_suite.py [new file with mode: 0644]
test/dialect/test_sybase.py
test/engine/test_bind.py
test/engine/test_ddlevents.py
test/engine/test_execute.py
test/engine/test_parseconnect.py
test/engine/test_pool.py
test/engine/test_processors.py
test/engine/test_reconnect.py
test/engine/test_reflection.py
test/engine/test_transaction.py
test/ex/test_examples.py
test/ext/declarative/test_basic.py
test/ext/declarative/test_clsregistry.py
test/ext/declarative/test_inheritance.py
test/ext/declarative/test_mixin.py
test/ext/declarative/test_reflection.py
test/ext/test_associationproxy.py
test/ext/test_compiler.py
test/ext/test_extendedattr.py
test/ext/test_horizontal_shard.py
test/ext/test_hybrid.py
test/ext/test_mutable.py
test/ext/test_orderinglist.py
test/ext/test_serializer.py
test/lib/__init__.py [deleted file]
test/orm/_fixtures.py
test/orm/inheritance/_poly_fixtures.py
test/orm/inheritance/test_abc_inheritance.py
test/orm/inheritance/test_abc_polymorphic.py
test/orm/inheritance/test_assorted_poly.py
test/orm/inheritance/test_basic.py
test/orm/inheritance/test_concrete.py
test/orm/inheritance/test_magazine.py
test/orm/inheritance/test_manytomany.py
test/orm/inheritance/test_poly_linked_list.py
test/orm/inheritance/test_poly_persistence.py
test/orm/inheritance/test_polymorphic_rel.py
test/orm/inheritance/test_productspec.py
test/orm/inheritance/test_relationship.py
test/orm/inheritance/test_selects.py
test/orm/inheritance/test_single.py
test/orm/inheritance/test_with_poly.py
test/orm/test_association.py
test/orm/test_assorted_eager.py
test/orm/test_attributes.py
test/orm/test_backref_mutations.py
test/orm/test_bind.py
test/orm/test_cascade.py
test/orm/test_collection.py
test/orm/test_compile.py
test/orm/test_composites.py
test/orm/test_cycles.py
test/orm/test_default_strategies.py
test/orm/test_defaults.py
test/orm/test_deprecations.py
test/orm/test_descriptor.py
test/orm/test_dynamic.py
test/orm/test_eager_relations.py
test/orm/test_evaluator.py
test/orm/test_events.py
test/orm/test_expire.py
test/orm/test_froms.py
test/orm/test_generative.py
test/orm/test_hasparent.py
test/orm/test_immediate_load.py
test/orm/test_inspect.py
test/orm/test_instrumentation.py
test/orm/test_joins.py
test/orm/test_lazy_relations.py
test/orm/test_load_on_fks.py
test/orm/test_lockmode.py
test/orm/test_manytomany.py
test/orm/test_mapper.py
test/orm/test_merge.py
test/orm/test_naturalpks.py
test/orm/test_of_type.py
test/orm/test_onetoone.py
test/orm/test_pickled.py
test/orm/test_query.py
test/orm/test_rel_fn.py
test/orm/test_relationships.py
test/orm/test_scoping.py
test/orm/test_selectable.py
test/orm/test_session.py
test/orm/test_subquery_relations.py
test/orm/test_sync.py
test/orm/test_transaction.py
test/orm/test_unitofwork.py
test/orm/test_unitofworkv2.py
test/orm/test_update_delete.py
test/orm/test_utils.py
test/orm/test_versioning.py
test/perf/insertspeed.py
test/perf/large_flush.py
test/perf/objselectspeed.py
test/perf/objupdatespeed.py
test/perf/ormsession.py
test/perf/sessions.py
test/profiles.txt [moved from test/lib/profiles.txt with 100% similarity]
test/requirements.py [moved from test/lib/requires.py with 98% similarity]
test/sql/test_case_statement.py
test/sql/test_compiler.py
test/sql/test_constraints.py
test/sql/test_cte.py
test/sql/test_defaults.py
test/sql/test_functions.py
test/sql/test_generative.py
test/sql/test_inspect.py
test/sql/test_labels.py
test/sql/test_metadata.py
test/sql/test_operators.py
test/sql/test_query.py
test/sql/test_quote.py
test/sql/test_returning.py
test/sql/test_rowcount.py
test/sql/test_selectable.py
test/sql/test_type_expressions.py
test/sql/test_types.py
test/sql/test_unicode.py
test/sql/test_update.py