Changes between Version 3 and Version 4 of DjangoOnWindows
- Timestamp:
- Jun 30, 2008, 8:08:20 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoOnWindows
v3 v4 7 7 == Test suite failures == 8 8 9 As of r7 787the 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 9 As 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. 13 13 14 14 === tests/regressiontests/templates/loaders.py === … … 32 32 ==== Workaround ==== 33 33 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.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. 35 35 36 36 === tests/regressiontests/queries/models.py === … … 146 146 147 147 The 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) 150 151 this 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. 151 152