summaryrefslogtreecommitdiff
path: root/tests/inspectdb
AgeCommit message (Collapse)Author
2018-03-12Refs #29004 -- Optimized InspectDBTransactionalTests.test_include_views() by ↵Mariusz Felisiak
limiting introspected tables.
2018-03-12Added functions for inspectdb table filtering in tests.Tim Graham
2018-01-27Fixed #29004 -- Added inspectdb --include-views option.bquinn
2018-01-03Fixed #28984 -- Made assorted code simplifications.Tim Graham
2017-01-24Removed unneeded force_text calls in the test suiteClaude Paroz
2017-01-20Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham
2017-01-19Fixed spelling mistakes in code and comments.james mike dupont
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham
2017-01-07Fixed #27700 -- Optimized inspectdb tests by specifying database tables.Mariusz Felisiak
2016-12-19Refs #19884 -- Removed DatabaseFeatures.can_introspect_max_length.Mariusz Felisiak
Unused (always True) after 3e43d24ad36d45cace57e6a7efd34638577ae744.
2016-12-19Refs #19884 -- Added CharField max_length introspection on Oracle.Mariusz Felisiak
2016-11-10Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za
2016-07-20Refs #24928 -- Added introspection support for UUIDFieldClaude Paroz
2016-03-18Fixed #25658 -- Allowed inspectdb to inspect a specific set of tables.José Tomás Tocino
2016-02-25Fixed #14098 -- Prevented crash for introspection errors in inspectdbClaude Paroz
Thanks Tim Graham for the review.
2015-11-25Fixed #25274 --- Made inspectdb handle renamed fields in unique_together.Jacek Bzdak
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-01-19Removed IPAddressField per deprecation timeline; refs #20439.Tim Graham
2015-01-01Fixed #23891 -- Moved deprecation of IPAddressField to system check framework.Tim Graham
Thanks Markus Holtermann for review.
2014-12-30Applied ignore_warnings to Django testsClaude Paroz
2014-10-20Fixed #23679 -- Fixed null introspection for char/text fieldsClaude Paroz
Thanks Paul Dejean for the report.
2014-09-27Fixed #22738 -- made finer distinctions for when Boolean is not detected on ↵Shai Berger
Oracle Thanks Claude Paroz for partial fix and Simon Charrette for review
2014-09-26Fixed #22738 -- Abstracted boolean field type introspectionClaude Paroz
Thanks maxi for the report, Shai Berger for his help with the patch and Tim Graham for the review.
2014-07-18Fixed #23028: Added unique_togther support to inspectdb.Damien Nozay
2014-07-06Fixed #21079 -- Further normalized table names in inspectdbClaude Paroz
Thanks Michael Manfre for the report and Tim Graham for the review.
2014-07-04Fixed #20631 -- Increased the default EmailField max_length to 254.Tim Graham
Thanks pmartin for the report.
2014-06-06Replaced an explicit vendor check by a feature flag.Aymeric Augustin
Forward-port of c9aedce0 from stable/1.7.x.
2014-06-06Checked can_introspect_null feature in a test.Aymeric Augustin
Forward-port of 1238f92c from stable/1.7.x.
2014-05-28Set straight the sense of 'uppercases_column_names' feature flagShai Berger
2014-05-10Adjusted refactoring of vendor checks.Aymeric Augustin
Thanks Shai for the thorough review.
2014-05-08Added feature flags for introspection capabilities.Aymeric Augustin
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
Thanks Piotr Kasprzyk for help with the patch.
2014-01-30Made Oracle introspect FloatFields correctlyShai Berger
Broke InspectDBTestCase.test_field_types in two: - a test_number_field_types, which now passes on Oracle too - a test_field_types, for all non-numeric fields, which is still expected to fail Also made some pep8 fixes in the tests file. Refs #19884 Thanks Tim Graham for review.
2014-01-17Adjusted inspectdb management command to yield PEP 8-compliant output ↵JustinTArthur
barring Django Coding Style exceptions.
2013-11-02PEP8 cleanupJason Myers
Signed-off-by: Jason Myers <jason@jasonamyers.com>
2013-10-26Fix all violators of E231Alex Gaynor
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-23Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol
2013-09-28Fixed #20439 -- Started deprecation of IPAddressFieldErik Romijn
2013-09-14Fixed #21097 - Added DatabaseFeature.can_introspect_autofieldMichael Manfre
2013-09-11Fixed #21090 -- Allowed backends to provide dotted field path to inspectdb.Michael Manfre
2013-09-09Removed unneeded imports in tests's __init__.py and unified them.Florian Apolloner
2013-08-15Fixed #20895 -- Made check management command warn if a BooleanField does ↵Alasdair Nicol
not have a default value Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch.
2013-07-01Stopped using django.utils.unittest in the test suite.Aymeric Augustin
Refs #20680.
2013-04-01Fixed #16737 -- Support non-ascii column names in inspectdbClaude Paroz
Thanks moof at metamoof.net for the report.
2013-04-01Fixed #5014 -- Guessed max_digits and decimal_places for SQLiteClaude Paroz
Decimal is treated as float on SQLite, hence inspectdb can only guess max_digits and decimal_places arguments.