summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/writing-code
AgeCommit message (Collapse)Author
2015-11-16Documented how to see the full traceback of a test failure.Tim Graham
2015-10-21Fixed #25578 -- Corrected the casing of "GitHub".Yusuke Miyazaki
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-16Updated docs coverage example to run in a single process.David Gibbons
2015-09-10Enabled parallel testing by default in runtests.py.Aymeric Augustin
2015-09-05Updated references to the TEST_* database settings.Aymeric Augustin
They were removed in Django 1.9. I could leave the reference to TEST_DEPENDENCIES in the 1.2.4 release notes because the link points to the right location and the name was accurate at the time.
2015-08-22Recommend relative imports within Django components.Aymeric Augustin
django-developers thread: https://groups.google.com/d/msg/django-developers/11XvmVdx58w/sFrF0pL8LTgJ
2015-08-08Updated various links in docsClaude Paroz
2015-07-31Fixed #25184 -- Added support for MaxMind GeoLite2 database formatFlavio Curella
2015-07-17Allowed installing closure with pip for admin JavaScript compression.Tim Graham
2015-07-03Updated mock note since Django no longer works with Python 3.2.Tim Graham
2015-07-03Fixed #25056 -- Documented minimum version of jinja2 for testing.Tim Graham
2015-06-30DEP 0003 -- Added JavaScript unit tests.Trey Hunner
Setup QUnit, added tests, and measured test coverage. Thanks to Nick Sanford for the initial tests.
2015-06-27Fixed #22463 -- Added code style guide and JavaScript linting (EditorConfig ↵Trey Hunner
and ESLint)
2015-06-25Updated release process for new release schedule.Tim Graham
2015-06-18Removed support for Python 3.3.Tim Graham
2015-06-05Capitalized "Python" in docs.Tim Graham
2015-05-01Updated capitalization in the word "JavaScript" for consistencyDave Hodder
2015-03-24Fixed #23666 -- Recommended Git Bash for running unit tests on Windows.Carolina
2015-02-22Fixed #24358 -- Corrected code-block directives for console sessions.Sean Wang
2015-02-11Updated docs and runtests.py for removal of tests from contrib.Tim Graham
2015-02-10Updated docs on running selenium tests.Tim Graham
2015-02-07Fixed docs typoPeter Inglesby
2015-02-06Fixed #23860 -- Documented import order convention.wrwrwr
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-29Fixed #24175 -- Updated docstring convention.Tim Graham
2015-01-12Fixed #24118 -- Added --debug-sql option for tests.Marc Tamlyn
Added a --debug-sql option for tests and runtests.py which outputs the SQL logger for failing tests. When combined with --verbosity=2, it also outputs the SQL for passing tests. Thanks to Berker, Tim, Markus, Shai, Josh and Anssi for review and discussion.
2015-01-09Added best practices for versionadded/changed annotations.Tim Graham
2014-12-30Added ignore_warnings decoratorClaude Paroz
And removed Ignore*DeprecationWarningsMixin, now obsolete. Thanks Berker Peksag and Tim Graham for the review.
2014-12-24Fixed #24049 -- Removed obsolete Java notes for Mac OS.Tim Graham
2014-12-01Fixed #23289 -- Added mock as a test dependency.Tim Graham
2014-11-29Fixed #23923 -- Promoted Django's deprecation warnings to errors in runtests.pyTim Graham
2014-11-24Fixed #23742 -- Added an option to reverse tests order.wrwrwr
This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review.
2014-11-24Improved line breaking in runtests docs.wrwrwr
2014-11-12Fixed #23775 -- Added docs for --bisect and --pair runtests options.wrwrwr
Thanks Baptiste Mispelon for review.
2014-10-23Fixed versionchanged indentation in unit-tests.txt.Berker Peksag
2014-10-16Fixed IRC channel name in submitting-patches.txt.Berker Peksag
The development channel is #django-dev.
2014-09-05Limited lines to 119 characters in django/Tim Graham
refs #23395.
2014-08-26Fixed clone URL of Django git repository.Duncan Parkes
2014-08-05Fixed broken links in docs.Tim Graham
2014-08-01Renamed "committers" to "team".Aymeric Augustin
2014-07-26Fixed #23103 -- Added contributing tutorial link to contributing index.Petras Zdanavičius
2014-07-13Fixed #23015 -- Fixed major/minor release terminology in docs.Tim Graham
2014-06-12Fixed #22818 -- Clarified you need to cd into the Django clone.Tim Graham
Thanks Josh Parris.
2014-06-03Added a patch review checklist.Tim Graham
2014-04-26Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
Avoided introducing a new regex-based SQL splitter in the migrations framework, before we're bound by backwards compatibility. Adapted this change to the legacy "initial SQL data" feature, even though it's already deprecated, in order to facilitate the transition to migrations. sqlparse becomes mandatory for RunSQL on some databases (all but PostgreSQL). There's no API to provide a single statement and tell Django not to attempt splitting. Since we have a more robust splitting implementation, that seems like a good tradeoff. It's easier to add a new keyword argument later if necessary than to remove one. Many people contributed to both tickets, thank you all, and especially Claude for the review. Refs #22401.
2014-04-23Various documentation typo/spelling fixesMarti Raudsepp
Errors detected by Topy (https://github.com/intgr/topy), all changes verified by hand.
2014-04-16Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ↵Tim Graham
in favor of installing sqlparse." This reverts commit 071c9337750b296d198cced56f3ffad0e176afb6. This introduced a regression on MySQL and custom SQL is deprecated.
2014-04-16Fixed #22457 -- Fixed contributing guide w/o github set-upJordi Yeh
The published commnand was not working when the user did not have the git client set-up with the public-key. Changed the contributing guide to clone it from https instead.
2014-04-09Fixed #22401 -- Deprecated regular expression parsing of initial SQL in ↵julien 'pouete' Godin
favor of installing sqlparse.