summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* - set explicit encoding settings for default mysql driverMike Bayer2015-11-211-1/+1
|
* - additional test adjustments for pypy / psycopg2cffi. ThisMike Bayer2015-01-261-1/+1
| | | | | | | | | | consists mainly of adjusting fixtures to ensure connections are closed explicitly. psycopg2cffi also handles unicode bind parameter names differently than psycopg2, and seems to possibly have a little less control over floating point values at least in one test which is marked as a "fail", though will see if it runs differently on linux than osx.. - changelog for psycopg2cffi, fixes #3052
* Added psycopg2cffi dialectShaun Stanworth2015-01-261-0/+1
|
* - comment this out (again)Mike Bayer2014-09-171-1/+1
|
* - repair get_foreign_table_names() for PGInsp/dialect levelpr128Mike Bayer2014-09-171-1/+1
| | | | | - repair get_view_names() - changelog + migration note
* keep this off for the moment as jenkins isn't set up for this yetMike Bayer2014-09-171-1/+1
|
* Merge branch 'master' of https://github.com/zzzeek/sqlalchemy into ↵Rodrigo Menezes2014-08-261-1/+1
|\ | | | | | | feature/postgres-relkind
| * - max failures 25Mike Bayer2014-08-161-1/+1
| | | | | | | | - guard against some potential pytest snarkiness
* | Added support for postgres_relkind.Rodrigo Menezes2014-08-141-0/+7
|/
* add pg8000Mike Bayer2014-07-061-0/+1
|
* updateMike Bayer2014-03-301-1/+1
|
* - Tweaked the settings for mysql-connector-python; in Py2K, theMike Bayer2014-03-271-0/+1
| | | | | | | | | | | "supports unicode statements" flag is now False, so that SQLAlchemy will encode the *SQL string* (note: *not* the parameters) to bytes before sending to the database. This seems to allow all unicode-related tests to pass for mysql-connector, including those that use non-ascii table/column names, as well as some tests for the TEXT type using unicode under cursor.executemany(). - other mysql-connector fixes; latest version seems to do better on function call counts
* - Support has been added for pytest to run tests. This runnerMike Bayer2014-03-031-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | is currently being supported in addition to nose, and will likely be preferred to nose going forward. The nose plugin system used by SQLAlchemy has been split out so that it works under pytest as well. There are no plans to drop support for nose at the moment and we hope that the test suite itself can continue to remain as agnostic of testing platform as possible. See the file README.unittests.rst for updated information on running tests with pytest. The test plugin system has also been enhanced to support running tests against mutiple database URLs at once, by specifying the ``--db`` and/or ``--dburi`` flags multiple times. This does not run the entire test suite for each database, but instead allows test cases that are specific to certain backends make use of that backend as the test is run. When using pytest as the test runner, the system will also run specific test suites multiple times, once for each database, particularly those tests within the "dialect suite". The plan is that the enhanced system will also be used by Alembic, and allow Alembic to run migration operation tests against multiple backends in one run, including third-party backends not included within Alembic itself. Third party dialects and extensions are also encouraged to standardize on SQLAlchemy's test suite as a basis; see the file README.dialects.rst for background on building out from SQLAlchemy's test platform.
* no more wheels until they have a pointMike Bayer2014-02-221-2/+0
| | | | fixes #2970
* ill never remember this URL so put it hereMike Bayer2014-02-171-0/+1
| | | | e Please enter the commit message for your changes. Lines starting
* - this seems to be the best string for pymysqlMike Bayer2014-02-031-1/+1
|
* - Fixed bug which prevented MySQLdb-based dialects (e.g.Mike Bayer2014-02-031-1/+1
| | | | | | | | | | pymysql) from working in Py3K, where a check for "connection charset" would fail due to Py3K's more strict value comparison rules. The call in question wasn't taking the database version into account in any case as the server version was still None at that point, so the method overall has been simplified to rely upon connection.character_set_name(). [ticket:2933]
* do the wheel thingMike Bayer2013-11-141-0/+3
|
* - some tweaks to try to help out mssql+pyodbc support a bit, py3k is reallyMike Bayer2013-06-031-0/+1
| | | | not happening too well (I need to stick with linux + freetds 0.91, I know)
* - OK we have -w sql passing for: sqlite, postgresql, oursql 2.7 + 3.3, ↵Mike Bayer2013-05-041-0/+1
| | | | mysqldb 2.7
* - add pgp identityrel_0_8_0Mike Bayer2013-03-091-0/+4
|
* Fixed table reflection for Oracle when accessing a synonym that refersMike Bayer2012-12-091-0/+7
| | | | | | | | | | to a DBLINK remote database; while the syntax has been present in the Oracle dialect for some time, up until now it has never been tested. The syntax has been tested against a sample database linking to itself, however there's still some uncertainty as to what should be used for the "owner" when querying the remote database for table information. Currently, the value of "username" from user_db_links is used to match the "owner". [ticket:2619]
* - add a runner moduleMike Bayer2012-09-271-0/+1
| | | | - make "default" the default dialect.
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-3/+3
| | | | | | | 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.
* - profile file is configurableMike Bayer2012-09-261-1/+2
|
* - further reorganization of test suite:Mike Bayer2012-09-261-1/+18
| | | | | | | | | | | - bootstrap and lib move to all absolute imports - testing.py is no longer internally referenced. - requirements move to be a pluggable class which can be overridden. - cleanup in the interests of third party testing, test/lib and test/bootstrap may move to be an independent package.
* - A TypeDecorator of Integer can be used with a primary keyMike Bayer2011-01-111-0/+1
| | | | | | | | | | | | | | | | | | | column, and the "autoincrement" feature of various dialects as well as the "sqlite_autoincrement" flag will honor the underlying database type as being Integer-based. [ticket:2005] - Result-row processors are applied to pre-executed SQL defaults, as well as cursor.lastrowid, when determining the contents of result.inserted_primary_key. [ticket:2006] - Bind parameters present in the "columns clause" of a select are now auto-labeled like other "anonymous" clauses, which among other things allows their "type" to be meaningful when the row is fetched, as in result row processors. - TypeDecorator is present in the "sqlalchemy" import space.
* - sqlalchemy.test and nose plugin moves back to being entirelyMike Bayer2010-11-281-1/+1
| | | | | | | | | | | | outside of "sqlalchemy" and under "test/". Rationale: - coverage plugin works without issue, without need for an awkward additional package install - command line for "nosetests" isn't polluted with SQLAlchemy options [ticket:1949]
* dont need the svn_revision flag anymoreMike Bayer2010-03-201-1/+0
|
* Modified unittests docs to explain that --first-package-wins=True is ↵Michael Trier2010-02-231-1/+2
| | | | required on Windows. Also modified the setup.cfg to add this option so that if using the default config there will be consistent behavior on all platforms.
* - mega example cleanupMike Bayer2010-01-191-0/+1
| | | | | | - added READMEs to all examples in each __init__.py and added to sphinx documentation - added versioning example - removed vertical/vertical.py, the dictlikes are more straightforward
* Reverted my screw up of setup.cfgMichael Trier2009-07-281-11/+5
|
* Corrected examples tests. I was running from ./test instead of root.Michael Trier2009-07-281-5/+11
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+3
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* added "dev" tag to default setupMike Bayer2006-08-261-0/+3
some extra README