Issue 988784: Windows installer missing test files (original) (raw)
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, []) 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, []) 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, []) 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.