test_dependencies breaks if not called from docutils directory.
[docutils.git] / sandbox / infrastructure / releasing-log.txt
blob50d341ddb11241fe62bcd1f7bdc364d2176e5c0b
1 Releasing
2 =========
4 :Contact: grubert@users.sourceforge.net, docutils-develop@users.sourceforge.net
5 :Revision: $Revision: 7396 $
6 :Date: $Date: 2012-04-29 11:18:23 +0200 (So, 29 Apr 2012) $
7 :Copyright: This document has been placed in the public domain.
9 Notes on what happend while releasing.
11 Release 0.10
12 ============
14 * same failures for some python2.6 versions ::
16               Problems with "raw" directive path:
17        -      InputError: [Errno 2] No such file or directory: 'non-existent.file'.
18        +      InputError: (2, 'No such file or directory').
20 * testing release tarball ::
22     ======================================================================
23     FAIL: test_dependencies (__main__.RecordDependenciesTests)
24     ----------------------------------------------------------------------
25     Traceback (most recent call last):
26       File "docutils-test/test_dependencies.py", line 61, in test_dependencies
27         self.assertEqual(record, expected)
28     AssertionError: [u'data/include.txt', u'data/raw.txt'] != [u'../docs/user/rst/images/title.png',
29     u'data/include.txt', u'data/raw.txt']
30     
31     ...
33   because ../docs is not there if run from /usr/../pythonx.x/site-packages/docutils-test.
35 Release 0.9.1
36 =============
38 same failures as for 0.9 plus
40 * python 2.3: twice, ignored ::
42   -             [Errno 2] No such file or directory: 'bogus.csv'.
43   +             [Errno 2] No such file or directory: u'bogus.csv'.
45   python 2.3 ::
47     ======================================================================
48     ERROR: test_unicode (test_error_reporting.ErrorStringTests)
49     ----------------------------------------------------------------------
50     Traceback (most recent call last):
51       File "/usr/local/lib/python2.3/site-packages/docutils-test/test_error_reporting.py", line 153, in test_unicode
52         self.assertEqual(u'ImportError: %s' % SafeString(self.bs),
53     UnicodeDecodeError: 'ascii' codec can't decode byte 0xfc in position 0: ordinal not in range(128)
55 Note: sf takes some considerable time till the downlods are visible for normal users.
56   More than 1 hour , the folder files/docutils/0.9.1 exists and the webinterface
57   correctly summarizes "Totals: 2 Items         1.6 MB" but nothing is shown.
59 Release 0.9
60 ===========
62 * python 2.3 unittest.TestCase has no assertTrue
63 * python 2.3 keyword dictionaries update method does not support kwargs
65 Ignored test errors
67 * python 2.3: unicode problems. 2.3 support is likely to be ended soon.
68   Systems with only 2.3 might not even know of unicode.
70 * PIL ``AttributeError: 'module' object has no attribute 'Image'``
72   A problem in PIL ? 
73   Tested and failiing on
75   - ubuntu8.04, python 2.4, 2.5  
76   - ubuntu10.04, python 2.6  
77   - ubuntu11.10, python 2.7  
79 * python 2.6.4rc1 has a different error message format::
81               Problems with "raw" directive path:
82        -      InputError: [Errno 2] No such file or directory: 'non-existent.file'.
83        +      InputError: (2, 'No such file or directory').
85   but not in python 2.6.7