summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_manifest.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove Python 2 compatibilityJason R. Coombs2020-08-161-4/+2
|
* Remove pkg_resources.py31compat.makedirs() in favor of the stdlibJon Dufresne2020-02-161-2/+1
| | | | | As setuptools is now python 3.5+, this compatibility shim is no longer necessary.
* Feed the hobgoblins (delint).Jason R. Coombs2019-01-261-66/+67
|
* Mark Py 2/3-only tests as skip instead of xfailNikolaus Waxweiler2018-10-271-2/+1
| | | | | Also reuse pre-defined py2_only and py3_only decorators where appropriate.
* Use Python 3 syntax for new-style clasessJason R. Coombs2018-06-031-1/+3
|
* Use makedirs with future compatibility throughout setuptools. Ref #1083.Jason R. Coombs2017-07-131-2/+2
|
* Merge branch 'master' into feature/re-vendor-sadfaceJason R. Coombs2017-05-301-20/+83
|\
| * Rewrite tests to test the actual matching rather than making assertions ↵Jason R. Coombs2017-04-181-20/+83
| | | | | | | | about the regular expressions. Fixes #1015.
| * Pass flags programmatically, avoiding deprecating trailing pattern flags ↵Jason R. Coombs2017-04-181-13/+13
| | | | | | | | syntax revealed in #1015.
* | Revert "Merge pull request #933 from pypa/feature/581-depend-not-bundle"Jason R. Coombs2017-02-241-1/+1
|/ | | | | This reverts commit 089cdeb489a0fa94d11b7307b54210ef9aa40511, reversing changes made to aaec654d804cb78dbb6391afff721a63f26a71cd.
* fixes #935 - allows for glob syntax in graftHatem Nassrat2017-01-231-0/+9
|
* Strip out vendored packages and require them instead. Ref #581.Jason R. Coombs2017-01-011-1/+1
|
* Revert "Fix #849 global-exclude globbing"Tim Heap2016-12-151-12/+0
| | | | This reverts commit 23aba916e1070d3cf9723af85a6ce07c89053931.
* Fix #849 global-exclude globbingTim Heap2016-11-211-0/+12
| | | | | After #764, `global-exclude .pyc` no longer excluded `.pyc` files. This fixes that regression, and adds a test for this behaviour.
* Fix quantity of blank lines.stepshal2016-10-181-4/+0
|
* Sort manifest file list in testsTim Heap2016-10-181-1/+19
| | | | | | | | | | | Different OS's and file systems return lists of files in different orders, not always creation order. This caused intermittent test failures. The file list is now sorted prior to being checked to ensure a consistent order across all systems. Fixes #816
* Much faster implementation of FileList, for big egg_info speedupsTim Heap2016-10-151-14/+54
|
* Fix quantity of blank lines after code object, class of function definition.stepshal2016-08-201-0/+1
|
* Copy FileList tests from distutilsTim Heap2016-08-171-9/+274
|
* Add tests for MANIFEST.inTim Heap2016-08-171-0/+210