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.

Author vajrasky
Recipients Arfrever, r.david.murray, vajrasky, zach.ware
Date 2013-12-01.14:25:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385907958.6.0.281289531315.issue19828@psf.upfronthosting.co.za>
In-reply-to
Content
Before patch:
$ ./python -S Lib/test/test_site.py 
Traceback (most recent call last):
  File "Lib/test/test_site.py", line 28, in <module>
    raise unittest.SkipTest("importation of site.py suppressed")
unittest.case.SkipTest: importation of site.py suppressed

After patch:
$ ./python -S Lib/test/test_site.py 
sssssssssssssssssssss
----------------------------------------------------------------------
Ran 21 tests in 0.003s

OK (skipped=21)

With this patch, ./python -S Lib/test will report test_site as *skipped* not *failed*.

My grand plan is to make ./python -S Lib/test successful.
History
Date User Action Args
2013-12-01 14:25:58vajraskysetrecipients: + vajrasky, Arfrever, r.david.murray, zach.ware
2013-12-01 14:25:58vajraskysetmessageid: <1385907958.6.0.281289531315.issue19828@psf.upfronthosting.co.za>
2013-12-01 14:25:58vajraskylinkissue19828 messages
2013-12-01 14:25:58vajraskycreate