This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Windows installer missing test files
Type: Stage:
Components: Installation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: loewis Nosy List: loewis, tim.peters
Priority: normal Keywords:

Created on 2004-07-11 05:37 by tim.peters, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg21483 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2004-07-11 05:37
The 2.4a1 Windows installer doesn't include the test file 
cfgparser.1, so test_cfgparser gets three errors in an 
installed Python on Windows:

==========================================
============================
FAIL: test_read_returns_file_list 
(__main__.ConfigParserTestCase)
------------------------------------------------------
----------------
Traceback (most recent call last):
  File "lib\test\test_cfgparser.py", line 250, in 
test_read_returns_file_list
    self.assertEqual(parsed_files, [file1])
AssertionError: [] != ['cfgparser.1']

==========================================
============================
FAIL: test_read_returns_file_list 
(__main__.RawConfigParserTestCase)
------------------------------------------------------
----------------
Traceback (most recent call last):
  File "lib\test\test_cfgparser.py", line 250, in 
test_read_returns_file_list
    self.assertEqual(parsed_files, [file1])
AssertionError: [] != ['cfgparser.1']

==========================================
============================
FAIL: test_read_returns_file_list 
(__main__.SafeConfigParserTestCase)
------------------------------------------------------
----------------
Traceback (most recent call last):
  File "lib\test\test_cfgparser.py", line 250, in 
test_read_returns_file_list
    self.assertEqual(parsed_files, [file1])
AssertionError: [] != ['cfgparser.1']

------------------------------------------------------
----------------
Ran 39 tests in 0.031s

FAILED (failures=3)

I think test files for the new decimal module are missing 
too, although I believe you won't notice this unless you 
pass "-u decimal" to regrtest.py, or run test_decimal.py 
directly.
msg21484 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-07-15 17:37
Logged In: YES 
user_id=21627

This is fixed in msi.py 1.14.
History
Date User Action Args
2022-04-11 14:56:05adminsetgithub: 40541
2004-07-11 05:37:16tim.peterscreate