Changes between Version 3 and Version 4 of DjangoOnWindows


Ignore:
Timestamp:
Jun 30, 2008, 8:08:20 AM (16 years ago)
Author:
Ramiro Morales
Comment:

OS X info for the setuptools test, add another platform where python 2.5 works for the sqlite test

Legend:

Unmodified
Added
Removed
Modified
  • DjangoOnWindows

    v3 v4  
    77== Test suite failures ==
    88
    9 As of r7787 the test suite is failing in two places when run on Windows + Python 2.5.2:
    10 
    11  * If setuptools is installed, on a test from {{{tests/regressiontests/templates/loaders.py}}} related to trying to load a template from an egg (from a report on #django-dev, it seems this test also fails on OS X).
    12  * On a test from {{{tests/regressiontests/queries/models.py}}} when using the sqlite3 Django DB backend
     9As of r7805 the test suite is failing in two places when run on Windows + Python 2.5.2:
     10
     11 * If setuptools is installed, on a test from {{{tests/regressiontests/templates/loaders.py}}} related to trying to load a template from an egg. From a [http://dpaste.com/59930/ report on #django-dev] this test also fails on OS X (OS X Leopard, Python 2.5.1, setuptools 0.6c8).
     12 * On a test from {{{tests/regressiontests/queries/models.py}}} when using the sqlite3 Django DB backend.
    1313
    1414=== tests/regressiontests/templates/loaders.py ===
     
    3232==== Workaround ====
    3333
    34 Uninstall setuptools. On [7751], Adrian modified the test suite machinery to skip the test(s) that depend on setuptools when it isn't installed.
     34Uninstall setuptools. On [7751] Adrian modified the test suite machinery to skip the test(s) that depend on setuptools when it isn't installed.
    3535
    3636=== tests/regressiontests/queries/models.py ===
     
    146146
    147147The same test works flawlessly on the following platforms:
    148  * GNU/Debian Linux 4.0 (Python 2.4.4 + pysqlite2 2.3.2 + sqlite3 3.3.8)
    149  * GNU/Debian Linux Sid as of Jun 29, 2008 (Python 2.5.2 + builtin pysqlite2 aka sqlite3 2.3.2 + sqlite3 3.5.9)
     148 * Python 2.4.4 + pysqlite2 2.3.2 + sqlite3 3.3.8 (GNU/Debian Linux 4.0)
     149 * Python 2.5 + builtin pysqlite2 ''aka'' sqlite3 2.3.2 + sqlite3 3.3.8 (GNU/Debian Linux 4.0)
     150 * Python 2.5.2 + builtin pysqlite2 ''aka'' sqlite3 2.3.2 + sqlite3 3.5.9 (GNU/Debian Linux Sid as of Jun 29, 2008)
    150151this may be thanks to the fact that on these platforms the shared sqlite3 library being used by the pysqlite2 (Python 2.4) or sqlite3 (Python 2.5) Python modules is the system wide one and so it hasn't been frozen at 3.3.4.
    151152
Back to Top