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 martin.panter
Recipients eric.araujo, martin.panter, ned.deily, pitrou, serhiy.storchaka, tarek, yjchen
Date 2015-12-13.02:37:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449974240.7.0.726238224487.issue7283@psf.upfronthosting.co.za>
In-reply-to
Content
I can’t imagine why the buildbot is failing either.

The directory is created and added to sys.path when test_site is imported:

if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
    # need to add user site directory for tests
    os.makedirs(site.USER_SITE)
    site.addsitedir(site.USER_SITE)

Maybe it should be changed to skip test_s_option() if the directory is missing; I dunno. Another option might be to create it just for the test, and then remove it, but that risks interfering with concurrent tests.
History
Date User Action Args
2015-12-13 02:37:20martin.pantersetrecipients: + martin.panter, pitrou, tarek, ned.deily, eric.araujo, serhiy.storchaka, yjchen
2015-12-13 02:37:20martin.pantersetmessageid: <1449974240.7.0.726238224487.issue7283@psf.upfronthosting.co.za>
2015-12-13 02:37:20martin.panterlinkissue7283 messages
2015-12-13 02:37:20martin.pantercreate