summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_scripts
AgeCommit message (Collapse)Author
2008-10-04Fixed #9293: Corrected expected test output for the admin_scripts tests, ↵Russell Keith-Magee
following the changes to --verbosity in 9110. Thanks to Alex for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9112 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-16Fixed #8268: Modified admin scripts tests to use JYTHONPATH when ↵Russell Keith-Magee
appropriate. Thanks to leosoto for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11Fixed #8235: use subprocess instead of popen3 so that Python 2.6 is happy. ↵Jacob Kaplan-Moss
Thanks, Karen Tracey. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8309 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-10Fixed #5943 -- Modified django-admin to behave like manage.py if settings ↵Russell Keith-Magee
are provided, either as --settings or DJANGO_SETTINGS_MODULE. Thanks to Joseph Kocherhans and Todd O'Bryan for their work on this ticket. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8282 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-08Fixed #8047: property detect an external database backend and set sys.path ↵Jacob Kaplan-Moss
accordingly. Patch from Leo Soto. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8238 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-08Fixed #8120, #7997 -- Cleaned up the help messages displayed by django-admin ↵Russell Keith-Magee
so that the lax options aren't repeated, and the lax options are displayed when no subcommand is provided. Thanks to Scott Moonen <smoonen@andstuff.org> and trevor for the respective reports. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8228 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-08Fixed #5825 -- Modified the custom command loader to allow for explicit ↵Russell Keith-Magee
specification of the project name, even if the project directory isn't in the python path. This brings custom command loading into alignment with application loading. Thanks to jdetaeye@frepple.com for the original report, and to abozanich for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8227 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-31Corrected a typo in [8158]. Thanks to Matthias Kestenholz <mk@spinlock.ch> ↵Russell Keith-Magee
for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8161 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-31Refs #8047 -- Removed some CPython specific parts of the admin scripts tests.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8158 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-30Fixed #8029 -- Modified admin_scripts test to use the PYTHONPATH from the ↵Russell Keith-Magee
environment where the test is executed. Thanks to Ramiro and Alex Gaynor for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8149 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-27Fixed the admin_scripts tests to check for the right output with Python 2.4.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8108 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-23Fixed #7906 -- Modified admin_scripts regression test to use the same python ↵Russell Keith-Magee
executable that is running the test suite, rather than using 'python' on the path. Thanks to Chris Hasenpflug for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8056 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-22Fixed a bunch of Python 2.3 test failures.Malcolm Tredinnick
All remaining buildbot failures on 2.3 are not due to the test suite, as far as I can work out. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8055 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-17Refs #7745 -- Modified use of assertTrue to failUnless, because assertTrue ↵Russell Keith-Magee
isn't available in Python 2.3. Thanks to Karen Tracey for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7941 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-14Removed a Python2.3 incompatible generator construct. Thanks to Karen Tracey ↵Russell Keith-Magee
for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7921 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-13Fixed #7728 -- Modified the output check in the admin script tests. Checking ↵Russell Keith-Magee
for pyc is a CPython-specific check, and it breaks CPython if pyc files aren't generated (due to permission problems, etc). Thanks to Maciej Fijalkowski (fijal) for the report and fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-13Fixed #7718 -- Added a naive implementation of sorted() for Python 2.3 ↵Russell Keith-Magee
compatibility, and modified test cases to import the function when required. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7914 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-11Fixed #6017 -- Modified the Lax parser to allow --settings and the other ↵Russell Keith-Magee
core management arguments to appear anywhere in the argument list. Thanks to Todd O'Bryan for the suggestion and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7888 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-11Fixed #7715 -- Modified the admin_scripts tests to do an app level import, ↵Russell Keith-Magee
rather than a project level import. This removes the potential for conflict between the admin script tests and the settings for the test suite itself. Thanks to Malcolm Tredinnick for his help hunting this one down. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7887 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-10Corrected a bug in [7876] picked up by the buildbot: depending on the order ↵Russell Keith-Magee
in which tests are run, some tests would fail because of a dependency on the current working directory. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7877 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-10Refs #5943, #6107 -- Added framework and tests to check for the correct ↵Russell Keith-Magee
operation of django-admin and manage.py. Thanks for Simon Willison and Karen Tracey for their contributions and assistance testing this patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7876 bcc190cf-cafb-0310-a4f2-bffc1f526a37