summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/test_create.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-241-233/+0
| | | | | | Distutils2 will live on on PyPI and be included in the stdlib when it is ready. See discussion starting at http://mail.python.org/pipermail/python-dev/2012-June/120430.html
* Stop converting package_data to extra_files in pysetup create (#13712).Éric Araujo2012-02-051-13/+12
| | | | | | | | pysetup create, the setup.cfg creation helper, used to convert package_data (from an existing setup.py) into extra_files, the replacement for MANIFEST.in, but these files are only present in sdists, not installed: they don’t have the same use case at all, so converting one into the other did not work.
* Clean up mocking of stdout and stdin in packaging tests.Éric Araujo2011-11-061-21/+10
| | | | | | | | Running with regrtest does not show spurious output or unrestored sys.std* objects; sometimes running with make test is different, I’ll watch the buildbots. In addition, update the create module to use logging.
* Clean up some idioms in packaging tests.Éric Araujo2011-10-191-2/+1
| | | | | | | | - Use os.makedirs (I had forgotten about it!) - Let TempdirManager.write_file call os.path.join for us - Remove custom command added by test_dist - Use a skip instead of hiding a method with an underscore - Address pyflakes warnings
* Make a number of small changes to ease the backport to distutils2Éric Araujo2011-09-181-5/+8
|
* Fix sdist to always include setup.cfg (#11092), to comply with the specÉric Araujo2011-06-061-6/+11
|
* Use strings instead of sets of lines in packaging.create tests.Éric Araujo2011-06-061-57/+63
| | | | | Using sets in tests did not check whether the values were written in the right section or with the right key.
* Issue #12125: fixed the failures under Solaris due to improper test cleanup.Tarek Ziade2011-05-231-1/+1
|
* Issue #12112: packaging reads and writes setup.cfg using UTF-8Victor Stinner2011-05-191-6/+6
|
* packaging: use with open() instead of try/finally: closeVictor Stinner2011-05-191-4/+1
|
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+235