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 nedbat
Recipients nedbat
Date 2015-10-13.11:45:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444736729.8.0.451337139853.issue25392@psf.upfronthosting.co.za>
In-reply-to
Content
The MANIFEST.in file for coverage.py excludes directories line doc/_build.  If I run "python setup.py --quiet develop", I get output like this:

    python3.5 setup.py --quiet develop
    no previously-included directories found matching 'doc/_build'
    no previously-included directories found matching 'tests/eggsrc/dist'
    no previously-included directories found matching 'tests/eggsrc/*.egg-info'

This is because I'm running the command in a working tree that hasn't had the docs built yet.  But I need MANIFEST.in to exclude that directory for the case where I do run the command in dirty tree.

1) Why is it a warning to exclude directories that don't exist in the first place?  That's not a problem.

2) Why doesn't --quiet silence those warnings?
History
Date User Action Args
2015-10-13 11:45:29nedbatsetrecipients: + nedbat
2015-10-13 11:45:29nedbatsetmessageid: <1444736729.8.0.451337139853.issue25392@psf.upfronthosting.co.za>
2015-10-13 11:45:29nedbatlinkissue25392 messages
2015-10-13 11:45:29nedbatcreate